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
4e6260d4
Commit
4e6260d4
authored
Apr 27, 2014
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
travis/pypy: set NWORKERS=4
parent
169e9fc2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
.travis.yml
.travis.yml
+2
-2
Makefile
Makefile
+1
-1
greentest/testrunner.py
greentest/testrunner.py
+1
-1
No files found.
.travis.yml
View file @
4e6260d4
...
...
@@ -5,7 +5,7 @@ python:
-
"
3.3"
-
"
pypy"
script
:
-
if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then PYTHON=pypy make travis_pypy; fi
-
if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ]]; then PYTHON=python$TRAVIS_PYTHON_VERSION make travis_cpython; fi
-
if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then
NWORKERS=4
PYTHON=pypy make travis_pypy; fi
-
if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ]]; then
NWORKERS=4
PYTHON=python$TRAVIS_PYTHON_VERSION make travis_cpython; fi
notifications
:
email
:
false
Makefile
View file @
4e6260d4
...
...
@@ -63,7 +63,7 @@ travis_pypy:
which
${PYTHON}
${PYTHON}
--version
${PYTHON}
setup.py
install
NWORKERS
=
1
cd
greentest
&&
${PYTHON}
testrunner.py
--config
../known_failures.py
cd
greentest
&&
${PYTHON}
testrunner.py
--config
../known_failures.py
travis_cpython
:
make whitespace
...
...
greentest/testrunner.py
View file @
4e6260d4
...
...
@@ -14,7 +14,7 @@ from util import log
TIMEOUT
=
180
NWORKERS
=
int
(
os
.
environ
.
get
(
'NWORKERS'
)
or
8
)
NWORKERS
=
int
(
os
.
environ
.
get
(
'NWORKERS'
)
or
4
)
def
run_many
(
tests
,
expected
=
None
,
failfast
=
False
):
...
...
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