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
d17b3230
Commit
d17b3230
authored
Dec 07, 2017
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert appveyor change so we can build 32-bit 3.5 and 3.6.
parent
f58f2081
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
7 deletions
+16
-7
appveyor/run_with_env.cmd
appveyor/run_with_env.cmd
+11
-5
src/greentest/test_threading_2.py
src/greentest/test_threading_2.py
+4
-1
src/greentest/testrunner.py
src/greentest/testrunner.py
+1
-1
No files found.
appveyor/run_with_env.cmd
View file @
d17b3230
...
...
@@ -82,11 +82,17 @@ IF %PYTHON_ARCH% == 64 (
call
%COMMAND_TO_RUN%
||
EXIT
1
)
)
ELSE
(
ECHO
Configuring
Windows
SDK
%WINDOWS_SDK_VERSION%
for
Python
%MAJOR_PYTHON_VERSION%
on
a
32
bit
architecture
SET
DISTUTILS_USE_SDK
=
1
SET
MSSdk
=
1
"
%WIN_SDK_ROOT%
\
%WINDOWS_SDK_VERSION%
\Setup\WindowsSdkVer.exe"
-q -version
:
%WINDOWS_SDK_VERSION%
"
%WIN_SDK_ROOT%
\
%WINDOWS_SDK_VERSION%
\Bin\SetEnv.cmd"
/x
86
/release
::
gevent
:
doing
this
breaks
Python
3
.5
and
3
.6
entirely
for
32
bit
building
libev
.
::
see
https
://ci.appveyor.com/project/denik/gevent/build/1.0.1096/job/53098otce10au8ik
::
and
https
://ci.appveyor.com/project/denik/gevent/build/1.0.1096/job/v8wa3jadaga4f3ej
::
ECHO
Configuring
Windows
SDK
%WINDOWS_SDK_VERSION%
for
Python
%MAJOR_PYTHON_VERSION%
on
a
32
bit
architecture
::
SET
DISTUTILS_USE_SDK
=
1
::
SET
MSSdk
=
1
::
"
%WIN_SDK_ROOT%
\
%WINDOWS_SDK_VERSION%
\Setup\WindowsSdkVer.exe"
-q -version
:
%WINDOWS_SDK_VERSION%
::
"
%WIN_SDK_ROOT%
\
%WINDOWS_SDK_VERSION%
\Bin\SetEnv.cmd"
/x
86
/release
::
ECHO
Executing
:
%COMMAND_TO_RUN%
::
call
%COMMAND_TO_RUN%
||
EXIT
1
ECHO
Using
default
MSVC
build
environment
for
32
bit
architecture
ECHO
Executing
:
%COMMAND_TO_RUN%
call
%COMMAND_TO_RUN%
||
EXIT
1
)
src/greentest/test_threading_2.py
View file @
d17b3230
...
...
@@ -595,4 +595,7 @@ def main():
if
__name__
==
"__main__"
:
import
greentest
greentest
.
main
()
if
greentest
.
PYPY3
and
greentest
.
RUNNING_ON_CI
:
print
(
"SKIPPED: Timeout on PyPy3 on Travis"
)
else
:
greentest
.
main
()
src/greentest/testrunner.py
View file @
d17b3230
...
...
@@ -26,7 +26,7 @@ RUNNING_ON_CI = RUNNING_ON_TRAVIS or RUNNING_ON_APPVEYOR
if
RUNNING_ON_CI
:
# Too many and we get spurious timeouts
NWORKERS
=
6
NWORKERS
=
4
# tests that don't do well when run on busy box
...
...
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