File tree Expand file tree Collapse file tree 8 files changed +117
-241
lines changed Expand file tree Collapse file tree 8 files changed +117
-241
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 python 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 python 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 1
1
mock==1.0.1
2
- coverage==3.7.1
2
+ pytest==2.7.2
3
+ pytest-cov==2.1.0
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- import fake_stat
15
+ from . import fake_stat
16
16
17
17
CURRENT_VERSION = 'v1.19'
18
18
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