8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df2d3a7 commit 9705cd0Copy full SHA for 9705cd0
.travis.yml
@@ -13,12 +13,22 @@ python:
13
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
14
install:
15
- "pip install -e ."
16
- - "pip install 'coverage>=3.7,<3.8' coveralls"
+ - "pip install coverage==4.4.2 coveralls"
17
script:
18
- "PYTHONFAULTHANDLER=x timeout -sABRT 30s nosetests -vsd"
19
after_success:
20
- coveralls
21
22
+deploy:
23
+ provider: pypi
24
+ user: "username"
25
+ password:
26
+ secure: "Your encrypted passw"
27
+ on:
28
+ tags: true
29
+ condition: '"$TRAVIS_PYTHON_VERSION" = "3.6" -o "$TRAVIS_PYTHON_VERSION" = "2.7"'
30
+ distributions: "sdist bdist_wheel"
31
+
32
matrix:
33
allow_failures:
34
- python: nightly
0 commit comments