Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
b5d72640
Commit
b5d72640
authored
Apr 28, 2018
by
Benoit Pierre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
travis: fix deployment stage
parent
511193af
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
10 deletions
+30
-10
.travis.yml
.travis.yml
+30
-10
No files found.
.travis.yml
View file @
b5d72640
...
...
@@ -8,6 +8,8 @@ python:
-
3.5
-
&latest_py3
3.6
-
nightly
-
pypy
-
pypy3
jobs
:
fast_finish
:
true
...
...
@@ -21,7 +23,7 @@ jobs:
python
:
*latest_py3
install
:
skip
script
:
skip
after_success
:
skip
after_success
:
true
before_deploy
:
python bootstrap.py
deploy
:
provider
:
pypi
...
...
@@ -34,13 +36,6 @@ jobs:
distributions
:
release
skip_cleanup
:
true
skip_upload_docs
:
true
# Don't run coverage on pypy.
-
python
:
pypy
script
:
tox
after_success
:
skip
-
python
:
pypy3
script
:
tox
after_success
:
skip
cache
:
pip
...
...
@@ -54,6 +49,31 @@ install:
# update egg_info based on setup.py in checkout
-
python bootstrap.py
script
:
tox -- --cov
script
:
-
|
( # Run testsuite.
set -ex
case $TRAVIS_PYTHON_VERSION in
pypy*)
# Don't run coverage on pypy (too slow).
tox
;;
*)
tox -- --cov
;;
esac
)
after_success
:
env TRAVIS_JOB_NAME="${TRAVIS_PYTHON_VERSION} (LANG=$LANG)" CODECOV_ENV=TRAVIS_JOB_NAME tox -e coverage,codecov
after_success
:
-
|
( # Upload coverage data.
set -ex
case $TRAVIS_PYTHON_VERSION in
pypy*)
;;
*)
export TRAVIS_JOB_NAME="${TRAVIS_PYTHON_VERSION} (LANG=$LANG)" CODECOV_ENV=TRAVIS_JOB_NAME
tox -e coverage,codecov
;;
esac
)
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