Commit 43d2a1a1 authored by Denis Bilenko's avatar Denis Bilenko

add known_failures.txt

- previously known as greentest/expected_failures.txt
- add it to MANIFEST.in
- make wintest.py use it
parent 806bff23
......@@ -38,7 +38,7 @@ install:
- sudo $PYTHON setup.py install
script:
- "echo `date`: Started testing"
- cd greentest && $PYTHON testrunner.py --full --expected expected_failures.txt
- cd greentest && $PYTHON testrunner.py --full --expected ../known_failures.txt
- "echo `date`: Finished testing"
notifications:
email:
......
......@@ -12,3 +12,4 @@ include changelog.rst
include MANIFEST.in
include AUTHORS
include Makefile.ext
include known_failures.txt
GEVENT_RESOLVER=ares test__socket_dns.py
GEVENT_RESOLVER=ares test__socket_dns6.py
# format:
# platform environ executable arguments
# instead of platform star ("*") means any platform
# instead of environ star ("*") means any environ, "-" means no gevent-specific environ
# instead of executable star ("*") means any executable
* GEVENTARES_SERVERS=8.8.8.8 GEVENT_RESOLVER=ares * -u test__socket_dns.py
* GEVENTARES_SERVERS=8.8.8.8 GEVENT_RESOLVER=ares * -u test__socket_dns6.py
win32 * C:\Python27\python.exe -u test__core_stat.py
win32 * C:\Python27\python.exe -u -m monkey_test test_threading.py
win32 * C:\Python27\python.exe -u -m monkey_test --Event test_threading.py
win32 * C:\Python27\python.exe -u -m monkey_test test_telnetlib.py
win32 * C:\Python27\python.exe -u -m monkey_test --Event test_telnetlib.py
win32 * C:\Python27\python.exe -u -m monkey_test test_subprocess.py
win32 * C:\Python27\python.exe -u -m monkey_test --Event test_subprocess.py
......@@ -28,7 +28,7 @@ if args[0:1] == ['test']:
system('%s setup.py build' % sys.executable)
os.chdir('greentest')
os.environ['PYTHONPATH'] = '.;..;../..'
system('%s testrunner.py' % sys.executable)
system('%s testrunner.py --expected ../known_failures.txt' % sys.executable)
elif not args:
assert options.host
if not options.source:
......
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