-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.travis.yml
39 lines (38 loc) · 1.07 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
# 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!
sudo: false
language: python
virtualenv:
system_site_packages: false
matrix:
fast_finish: true
include:
- python: 3.7
env: DISTRIB="ubuntu" TOX_PYTHON_VERSION="py37" COVERAGE="true"
install:
- pip install pipenv
- pipenv install --dev
# ^ 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 user.email "mr.fedotovaleksandr@gmail.com"
- git config user.name "fedotovaleksandr"
script:
- python setup.py develop
- tox
- |
if [[ "$COVERAGE" == "true" ]]; then
pre-commit install
pre-commit run --all-files
fi
- python setup.py test
after_success:
- if [[ "$COVERAGE" == "true" ]]; then coveralls || echo "failed"; fi
after_script:
- travis-cleanup
cache:
pip: true
directories:
- $HOME/miniconda