Skip to content

Commit

Permalink
Need to include current directory too, I think.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Sep 16, 2015
1 parent 4144a2f commit 94987a4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,14 @@ travistest:
make bench

# combine after each step so we don't lose anything (append is the default). This also
# moves the coverage file from greentest to the root.
# moves the coverage file from greentest to the root. It's necessary to specify the current
# directory to include all results previously combined too.
cd greentest && GEVENT_RESOLVER=thread ${PYTHON} testrunner.py --config ../known_failures.py
coverage combine greentest/
coverage combine . greentest/
cd greentest && GEVENT_RESOLVER=ares GEVENTARES_SERVERS=8.8.8.8 ${PYTHON} testrunner.py --config ../known_failures.py --ignore tests_that_dont_use_resolver.txt
coverage combine greentest/
coverage combine . greentest/
cd greentest && GEVENT_FILE=thread ${PYTHON} testrunner.py --config ../known_failures.py `grep -l subprocess test_*.py`
coverage combine greentest/
coverage combine . greentest/

toxtest:
cd greentest && GEVENT_RESOLVER=thread python testrunner.py --config ../known_failures.py
Expand Down

0 comments on commit 94987a4

Please sign in to comment.