forked from uqfoundation/multiprocess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
37 lines (31 loc) · 803 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
language: python
sudo: false
matrix:
include:
- python: '2.5'
- python: '2.6'
- python: '2.7'
- python: '3.1'
- python: '3.2'
- python: '3.3'
- python: '3.4'
- python: '3.5'
- python: '3.6'
- python: 'nightly'
- python: 'pypy'
- python: 'pypy3'
allow_failures:
- python: '2.5'
- python: '3.1'
- python: 'nightly'
- python: 'pypy'
- python: 'pypy3'
fast_finish: true
cache:
pip: true
before_install:
- set -e # fail on any error
install:
- python setup.py build && python setup.py install
script:
- for test in py$TRAVIS_PYTHON_VERSION/tests/*.py; do if [[ $test != *"main"* ]]; then echo $test ; python $test > /dev/null ; fi; done