forked from uqfoundation/dill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
66 lines (50 loc) · 1.47 KB
/
.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
dist: trusty
language: python
matrix:
include:
- python: '2.7'
env:
- COVERAGE="true"
- NUMPY="true"
- python: '3.5'
env:
- COVERAGE="true"
- python: '3.6'
env:
- python: '3.7'
dist: xenial
env:
- python: '3.8'
dist: xenial
env:
- python: '3.9'
dist: xenial
env:
- python: '3.10-dev'
dist: xenial
env:
- python: 'nightly'
dist: xenial
env:
- python: 'pypy'
env:
- python: 'pypy3'
env:
allow_failures:
- python: '3.10-dev'
- python: 'nightly'
- python: 'pypy3'
fast_finish: true
cache:
pip: true
before_install:
- set -e # fail on any error
- if [[ $COVERAGE == "true" ]]; then pip install coverage; fi
- if [[ $NUMPY == "true" ]]; then pip install numpy; fi
install:
- python setup.py build && python setup.py install
script:
- for test in tests/__init__.py; do echo $test ; if [[ $COVERAGE == "true" ]]; then coverage run -a $test > /dev/null; else python $test > /dev/null; fi ; done
- for test in tests/test_*.py; do echo $test ; if [[ $COVERAGE == "true" ]]; then coverage run -a $test > /dev/null; else python $test > /dev/null; fi ; done
after_success:
- if [[ $COVERAGE == "true" ]]; then bash <(curl -s https://codecov.io/bash); else echo ''; fi