Commit f0515dc7 authored by Lisandro Dalcin's avatar Lisandro Dalcin

AppVeyor: Exclude failing tests

parent 800c0fc4
......@@ -71,7 +71,7 @@ build_script:
test: off
test_script:
- "%WITH_ENV% %PYTHON%\\python.exe runtests.py -vv --no-cpp -x common_include_dir -x cythonize_script -x test_grammar -x initial_file_path"
- "%WITH_ENV% %PYTHON%\\python.exe runtests.py -vv --no-cpp"
artifacts:
- path: dist\*
......
......@@ -1961,7 +1961,8 @@ def runtests(options, cmd_args, coverage=None):
if not test_bugs:
exclude_selectors += [
FileListExcluder(os.path.join(ROOTDIR, bugs_file_name), verbose=verbose_excludes)
for bugs_file_name in ['bugs.txt'] + (['pypy_bugs.txt'] if IS_PYPY else [])
for bugs_file_name in ['bugs.txt'] + (['pypy_bugs.txt'] if IS_PYPY else []) +
(['windows_bugs.txt'] if sys.platform == 'win32' else [])
]
if sys.platform in ['win32', 'cygwin'] and sys.version_info < (2,6):
......
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