Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
f0515dc7
Commit
f0515dc7
authored
9 years ago
by
Lisandro Dalcin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AppVeyor: Exclude failing tests
parent
800c0fc4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
appveyor.yml
appveyor.yml
+1
-1
runtests.py
runtests.py
+2
-1
No files found.
appveyor.yml
View file @
f0515dc7
...
...
@@ -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\*
...
...
This diff is collapsed.
Click to expand it.
runtests.py
View file @
f0515dc7
...
...
@@ -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):
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment