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
4c093aab
Commit
4c093aab
authored
Jun 16, 2015
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Back to specific python versions in an attempt for better travis caching.
parent
2b6be394
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
17 deletions
+12
-17
.travis.yml
.travis.yml
+12
-17
No files found.
.travis.yml
View file @
4c093aab
language
:
python
sudo
:
false
python
:
-
2.6
-
2.7
-
pypy
-
3.3
-
3.4
env
:
-
TOXENV=travis-lint
-
TOXENV=py26
-
TOXENV=py27
-
TOXENV=pypy
-
TOXENV=py33
-
TOXENV=py34
-
LINT=true
-
LINT=false
install
:
# First install a newer pip so that it can use the wheel cache
# (only needed until travis upgrades pip to 7.x)
-
travis_retry pip install -U pip
# Then start installing our deps. Note that use of --build-options / --global-options / --install-options
# disables the cache.
# XXX: This may be useless; our environment based test matrix means these commands all
# run with the same python version.
-
travis_retry pip install -U tox cython greenlet
-
travis_retry pip install -U tox cython greenlet pep8 pyflakes
-
travis_retry python setup.py develop
script
:
# Try to use the site packages of cython we just installed. Also use development mode
# so that our actual source is not included in the cache (because it changes all the time
# the cache would be useless).
-
tox --sitepackages --develop
-
if [[ $TRAVIS_PYTHON_VERSION == '2.7' && LINT ==
true
]]; then make travis_test_linters; else make toxtest; fi
notifications
:
email
:
false
cache
:
directories
:
-
$HOME/.cache/pip
-
$HOME/build/gevent/gevent/.tox
cache
:
pip
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