File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ use `tox` (see the configuration in `tox.ini`):
132132$ tox
133133```
134134
135- To run integration tests:
135+ To run integration tests, make sure the Docker daemon is running and then run :
136136
137137```
138138$ pytest integration_tests
Original file line number Diff line number Diff line change 2020from uuid import uuid4
2121
2222import click
23- import prestodb . logging
23+ import logging
2424import pytest
2525import requests
2626from prestodb .client import PrestoQuery , PrestoRequest
2727from prestodb .constants import DEFAULT_PORT
2828from prestodb .exceptions import TimeoutError
2929
3030
31- logger = prestodb . logging .get_logger (__name__ )
31+ logger = logging .getLogger (__name__ )
3232
3333
3434def get_latest_release ():
Original file line number Diff line number Diff line change 1111# limitations under the License.
1212from __future__ import absolute_import , division , print_function
1313
14- import fixtures
14+ import integration_tests . fixtures as fixtures
1515import prestodb
1616import pytest
17- from fixtures import run_presto
17+ from integration_tests . fixtures import run_presto
1818from prestodb .transaction import IsolationLevel
1919
2020TEST_SESSION_PROPERTIES = {
Original file line number Diff line number Diff line change 1+ httpretty
2+ requests
3+ requests_kerberos
4+ click
You can’t perform that action at this time.
0 commit comments