Skip to content

Commit

Permalink
pimp my pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
Krilivye committed Oct 16, 2016
1 parent 6e5d646 commit 6c5a542
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
11 changes: 10 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
.PHONY: run integration check

run:
firefox index.html
check:

integration:
python setup.py test

check:
.tox/py35/bin/pytest

fullcheck:
.tox/py35/bin/pytest --cov TTT/ -n auto
9 changes: 7 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,10 @@
envlist = py35

[testenv]
deps= -rrequirements.txt
commands=pytest
deps=
pytest
pytest-sugar
pytest-xdist
pytest-cov
webtest
commands=pytest --cov TTT/ -n auto

0 comments on commit 6c5a542

Please sign in to comment.