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 1010.tox
1111.coverage
1212html /*
13+ tests /__pycache__
1314
1415# Compiled Documentation
1516site /
Original file line number Diff line number Diff line change @@ -13,13 +13,13 @@ build-py3:
1313test : unit-test integration-test unit-test-py3 integration-test-py3
1414
1515unit-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
1717
1818unit-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
2020
2121integration-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
2323
2424integration-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 3333from six .moves import BaseHTTPServer
3434from six .moves import socketserver
3535
36- from test import Cleanup
36+ from . test import Cleanup
3737
3838# FIXME: missing tests for
3939# export; history; insert; port; push; tag; get; load; stats
You can’t perform that action at this time.
0 commit comments