forked from CodeReclaimers/neat-python
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (31 loc) · 658 Bytes
/
.travis.yml
File metadata and controls
31 lines (31 loc) · 658 Bytes
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
dist: precise
language: python
python:
- 2.7
- 3.5
- 3.6
- 3.3
- 3.4
- 3.5-dev
- 3.6-dev
- 3.7-dev
- nightly
env:
matrix:
include:
- python: pypy2.7-5.8.0
- python: pypy3.5-5.8.0
- python: pypy2.7-5.8.0
env: TRY_PYPY=1
- python: pypy3.5-5.8.0
env: TRY_PYPY=1
fast_finish: true
allow_failures:
- env: TRY_PYPY=1
install:
- pip install --upgrade nose coveralls coverage
- if [[ $TRAVIS_PYTHON_VERSION == 'pypy'* ]]; then export TRAVIS_WAIT=45; else export TRAVIS_WAIT=20; fi
script:
travis_wait "${TRAVIS_WAIT}" nosetests --with-coverage --cover-package=neat -vd
after_success:
coveralls