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
b5581241
Commit
b5581241
authored
Apr 19, 2019
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
We need to install pylint when we don't have the cache.
parent
c872f116
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
.coveragerc
.coveragerc
+4
-3
.travis.yml
.travis.yml
+5
-1
No files found.
.coveragerc
View file @
b5581241
...
...
@@ -49,9 +49,10 @@ omit =
src/gevent/_tblib.py
[paths]
# Attempt to combine source and
# paths from the Travis CI installs so they all
# get collapsed during combining.
# Combine source and paths from the Travis CI installs so they all get
# collapsed during combining. Otherwise, coveralls.io reports
# many different files (/lib/pythonX.Y/site-packages/gevent/...) and we don't
# get a good aggregate number.
source =
src/
*/lib/*/site-packages/
...
...
.travis.yml
View file @
b5581241
...
...
@@ -103,7 +103,9 @@ jobs:
-
&build-gevent-python
time ./scripts/install.sh $TRAVIS_PYTHON_VERSION
# Install gevent. Yes, this will create different files each time,
# leading to a fresh cache. But because of CCache stats, we had already been doing
# that (before we learned about CCACHE_NOSTATS)
# that (before we learned about CCACHE_NOSTATS).
# We don't install using the requirements file for speed (reduced deps) and because an editable
# install doesn't work in the cache.
# First, the build dependencies (see setup.cfg)
# so that we don't have to use build isolation and can better use the cache;
# Note that we can't use -U for cffi and greenlet on PyPy.
...
...
@@ -150,6 +152,8 @@ jobs:
# We only need to do this on one version, and it should be Python 3, because
# pylint has stopped updating for Python 2.
-
stage
:
test
# We need pylint, since above we're not installing a requirements file
install
:
pip install pylint
script
:
python -m pylint --rcfile=.pylintrc gevent
env
:
TRAVIS_PYTHON_VERSION=3.7
name
:
lint37
...
...
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