Skip to content

Commit

Permalink
Fix missing coverage error
Browse files Browse the repository at this point in the history
  • Loading branch information
Cole Brumley committed Aug 9, 2016
1 parent 4bb6029 commit 1013406
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ default: dist
init-py35:
@echo Building Python 3.5 virtualenv
test -d py35 || virtualenv py35 --no-site-packages --python=python3.5
py35/bin/pip install -r dev-requirements.txt
py35/bin/pip install -r requirements.txt
py35/bin/python setup.py develop

init-py27:
@echo Building Python 2.7 virtualenv
test -d py27 || virtualenv py27 --no-site-packages --python=python2.7
py27/bin/pip install -r dev-requirements.txt
py27/bin/pip install -r requirements.txt
py27/bin/python setup.py develop

test: init-py35
Expand Down
6 changes: 0 additions & 6 deletions dev-requirements.txt

This file was deleted.

5 changes: 4 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
docker-py
docker-py
mock
coverage
tox
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[tox]
envlist = py27,py35

deps = -r{toxinidir}/dev-requirements.txt
deps = -r{toxinidir}/requirements.txt

[testenv]
commands = coverage run -p setup.py test

0 comments on commit 1013406

Please sign in to comment.