forked from nose-devs/nose2
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
41 lines (41 loc) · 910 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
language: python
sudo: false
cache:
directories:
- "$HOME/.cache/pip"
python:
- pypy
- pypy3
- '2.7'
- '3.4'
- '3.5'
- '3.6'
# include 3.7-dev, but put it in allow_failures (so we can easily view status,
# but not block on it)
- '3.7-dev'
install:
- travis_retry pip install tox-travis
- travis_retry pip install coveralls
- travis_retry pip install coverage
script:
tox
after_success:
- coveralls
deploy:
provider: pypi
user: the_drow
password:
secure: UprHllwkY0QzmO5mGl30LpJcpdnyf9wRkrXjifeEuOFjBAosWISa0vOPd6OMv8oZ5zWlEODiMRPVxHvBsjqo2nKLxSRh98Vc6vZCZBNc1GZEcbkAQDntQCnUwQhwWlrE8imcgjHAWlOvFUzzhrCF6l97TLFe7hRJl/Ms4LLJ1QI=
on:
tags: true
distributions: sdist bdist_wheel
repo: nose-devs/nose2
matrix:
fast_finish: true
allow_failures:
- python: "3.7-dev"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/11076bd53e2156a9a00b
on_start: never