Commit 16af4620 authored by Denis Bilenko's avatar Denis Bilenko

travis: fix broken ack command

parent f6831bfa
......@@ -55,8 +55,7 @@ travistest:
cd greentest && GEVENT_RESOLVER=thread ${PYTHON} testrunner.py --expected ../known_failures.txt
cd greentest && GEVENT_RESOLVER=ares GEVENTARES_SERVERS=8.8.8.8 ${PYTHON} testrunner.py --expected ../known_failures.txt --ignore tests_that_dont_use_resolver.txt
# --ignore option does not work as expected XXX
cd greentest && GEVENT_FILE=thread ${PYTHON} testrunner.py --expected ../known_failures.txt --ignore tests_that_dont_use_subprocess.txt
cd greentest && GEVENT_FILE=thread ${PYTHON} testrunner.py --expected ../known_failures.txt `grep -l subprocess test_*.py`
travis:
make whitespace
......@@ -75,8 +74,6 @@ travis:
pip install -q --download . greenlet
unzip -q greenlet-*.zip
ack -w subprocess greentest/ -l -v | python -c 'import sys; print("\n".join(line.split("/")[-1].strip() for line in sys.stdin))' > greentest/tests_that_dont_use_subprocess.txt
sudo -E make travistest
sudo -E apt-get install ${PYTHON}-dbg
......
......@@ -3,6 +3,7 @@ import os
import glob
import util
import atexit
# subprocess: include in subprocess tests
TIMEOUT = 60
......
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