-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis-old.yml
47 lines (46 loc) · 1.26 KB
/
.travis-old.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
# Travis configuration file using the build matrix feature
# Read more under http://docs.travis-ci.com/user/build-configuration/
# THIS SCRIPT IS SUPPOSED TO BE AN EXAMPLE. MODIFY IT ACCORDING TO YOUR NEEDS!
os: linux
language: python
virtualenv:
system_site_packages: false
jobs:
fast_finish: true
include:
- python: 3.6
env: DISTRIB="ubuntu" TOX_PYTHON_VERSION="py36" COVERAGE="true"
- env: DISTRIB="conda" PYTHON_VERSION="3.6" COVERAGE="false"
install:
- source tests/travis_install.sh
- pip install -r requirements.txt
# ^ DEPRECATION WARNING:
# The automatic creation of a `requirements.txt` file is deprecated.
# See `Dependency Management` in the docs for other options.
before_script:
- git config --global user.email "luk036@gmail.com"
- git config --global user.name "Wai-Shing Luk"
script:
- python setup.py develop
- tox
- |
if [[ "$COVERAGE" == "true" ]]; then
python setup.py test --addopts --cov=src/
fi
after_success:
- |
if [[ "$COVERAGE" == "true" ]]; then
coveralls || echo "failed"
codecov || echo "failed"
fi
after_script:
- travis-cleanup
cache:
pip: true
directories:
- $HOME/miniconda
notifications:
email: false
slack:
rooms:
- loksu:jErzuILLSNn9qGYkkILvBwje#ckpttnpy