File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 10
10
.tox
11
11
.coverage
12
12
html /*
13
+ tests /__pycache__
13
14
14
15
# Compiled Documentation
15
16
site /
Original file line number Diff line number Diff line change @@ -13,13 +13,13 @@ build-py3:
13
13
test : unit-test integration-test unit-test-py3 integration-test-py3
14
14
15
15
unit-test : build
16
- docker run docker-py py.test tests/test.py
16
+ docker run docker-py py.test tests/test.py tests/utils_test.py
17
17
18
18
unit-test-py3 : build-py3
19
- docker run docker-py3 py.test tests/test.py
19
+ docker run docker-py3 py.test tests/test.py tests/utils_test.py
20
20
21
21
integration-test : build
22
- docker run -e NOT_ON_HOST=true -v ` $( HOST_TMPDIR) ` :/tmp -v /var/run/docker.sock:/var/run/docker.sock docker-py python tests/integration_test.py
22
+ docker run -e NOT_ON_HOST=true -v ` $( HOST_TMPDIR) ` :/tmp -v /var/run/docker.sock:/var/run/docker.sock docker-py py.test tests/integration_test.py
23
23
24
24
integration-test-py3 : build-py3
25
- docker run -e NOT_ON_HOST=true -v ` $( HOST_TMPDIR) ` :/tmp -v /var/run/docker.sock:/var/run/docker.sock docker-py3 python tests/integration_test.py
25
+ docker run -e NOT_ON_HOST=true -v ` $( HOST_TMPDIR) ` :/tmp -v /var/run/docker.sock:/var/run/docker.sock docker-py3 py.test tests/integration_test.py
Original file line number Diff line number Diff line change 33
33
from six .moves import BaseHTTPServer
34
34
from six .moves import socketserver
35
35
36
- from test import Cleanup
36
+ from . test import Cleanup
37
37
38
38
# FIXME: missing tests for
39
39
# export; history; insert; port; push; tag; get; load; stats
You can’t perform that action at this time.
0 commit comments