Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
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
Kirill Smelkov
gevent
Commits
3fb63d17
Commit
3fb63d17
authored
Feb 11, 2016
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AppVeyor is stuck with 3.4.3, so ignore the tests that fail there.
parent
2018af94
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
12 deletions
+21
-12
appveyor.yml
appveyor.yml
+13
-12
greentest/patched_tests_setup.py
greentest/patched_tests_setup.py
+8
-0
No files found.
appveyor.yml
View file @
3fb63d17
...
...
@@ -17,9 +17,9 @@ environment:
# PYTHON_VERSION: "2.7.x"
# PYTHON_ARCH: "32"
-
PYTHON
:
"
C:
\\
Python3
5
"
PYTHON_VERSION
:
"
3.
5.x"
# currently 3.5.0
PYTHON_ARCH
:
"
32
"
-
PYTHON
:
"
C:
\\
Python3
4-x64
"
PYTHON_VERSION
:
"
3.
4.x"
# currently 3.4.3
PYTHON_ARCH
:
"
64
"
PYTHON_EXE
:
python
-
PYTHON
:
"
C:
\\
Python27-x64"
...
...
@@ -32,6 +32,16 @@ environment:
PYTHON_ARCH
:
"
64"
PYTHON_EXE
:
python
-
PYTHON
:
"
C:
\\
Python33-x64"
PYTHON_VERSION
:
"
3.3.x"
# currently 3.3.5
PYTHON_ARCH
:
"
64"
PYTHON_EXE
:
python
-
PYTHON
:
"
C:
\\
Python35"
PYTHON_VERSION
:
"
3.5.x"
# currently 3.5.0
PYTHON_ARCH
:
"
32"
PYTHON_EXE
:
python
-
PYTHON
:
"
C:
\\
Python27"
PYTHON_VERSION
:
"
2.7.x"
# currently 2.7.9
PYTHON_ARCH
:
"
32"
...
...
@@ -42,20 +52,11 @@ environment:
PYTHON_ARCH
:
"
32"
PYTHON_EXE
:
python
-
PYTHON
:
"
C:
\\
Python33-x64"
PYTHON_VERSION
:
"
3.3.x"
# currently 3.3.5
PYTHON_ARCH
:
"
64"
PYTHON_EXE
:
python
-
PYTHON
:
"
C:
\\
Python34"
PYTHON_VERSION
:
"
3.4.x"
# currently 3.4.3
PYTHON_ARCH
:
"
32"
PYTHON_EXE
:
python
-
PYTHON
:
"
C:
\\
Python34-x64"
PYTHON_VERSION
:
"
3.4.x"
# currently 3.4.3
PYTHON_ARCH
:
"
64"
PYTHON_EXE
:
python
# Also test a Python version not pre-installed
# See: https://github.com/ogrisel/python-appveyor-demo/issues/10
...
...
greentest/patched_tests_setup.py
View file @
3fb63d17
...
...
@@ -218,6 +218,14 @@ if hasattr(sys, 'pypy_version_info'):
# https://bitbucket.org/cffi/cffi/issue/152/handling-errors-from-signal-handlers-in
]
if
sys
.
version_info
[:
2
]
==
(
3
,
4
)
and
sys
.
version_info
[:
3
]
<
(
3
,
4
,
4
):
# Older versions have some issues with the SSL tests. Seen on Appveyor
disabled_tests
+=
[
'test_ssl.ContextTests.test_options'
,
'test_ssl.ThreadedTests.test_protocol_sslv23'
,
'test_ssl.ThreadedTests.test_protocol_sslv3'
,
]
if
sys
.
version_info
[:
2
]
>=
(
3
,
4
):
disabled_tests
+=
[
'test_subprocess.ProcessTestCase.test_threadsafe_wait'
,
...
...
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