Commit 94987a45 authored by Jason Madden's avatar Jason Madden

Need to include current directory too, I think.

parent 4144a2f6
...@@ -61,13 +61,14 @@ travistest: ...@@ -61,13 +61,14 @@ travistest:
make bench make bench
# combine after each step so we don't lose anything (append is the default). This also # 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 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 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` cd greentest && GEVENT_FILE=thread ${PYTHON} testrunner.py --config ../known_failures.py `grep -l subprocess test_*.py`
coverage combine greentest/ coverage combine . greentest/
toxtest: toxtest:
cd greentest && GEVENT_RESOLVER=thread python testrunner.py --config ../known_failures.py cd greentest && GEVENT_RESOLVER=thread python testrunner.py --config ../known_failures.py
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment