forked from sztal/pybdm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
40 lines (36 loc) · 871 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
38
39
40
# Config file for automatic testing at travis-ci.org
language: python
dist: bionic
python:
- 3.5
- 3.6
- 3.7
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -r requirements.txt
- pip install .
# matrix:
# include:
# - os: osx
# language: minimal
# python: 3.7
# install:
# - pip3 install -r requirements.txt
# - pip3 install -e .[tests]
# script:
# - pytest --slow
# - os: windows
# language: minimal
# python:
# - "3.5"
# - "3.6"
# - "3.7"
# before_install:
# - choco install python3
# - export PATH="/c/Python37:/c/Python37/Scripts:$PATH"
# command to run tests, e.g. python setup.py test
script:
- pytest --slow --cov-report term --cov=pybdm/ --cov=tests/
- pytest --pylint -m pylint
after_success:
- codecov