-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
74 lines (70 loc) · 1.38 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
language: python
matrix:
allow_failures:
- os: osx
include:
- os: linux
python: 3.5
compiler: clang
- os: linux
python: 3.5
compiler: gcc
- os: linux
python: 3.6
compiler: clang
- os: linux
python: 3.6
compiler: gcc
- os: linux
python: 3.7
compiler: clang
- os: linux
python: 3.7
compiler: gcc
- os: linux
python: 3.8
compiler: clang
- os: linux
python: 3.8
compiler: gcc
- os: osx
osx_image: xcode9.4
language: sh
addons:
homebrew:
update: true
packages: python3
- os: osx
osx_image: xcode10.3
language: sh
addons:
homebrew:
update: true
packages: python3
- os: osx
osx_image: xcode11.2
language: sh
addons:
homebrew:
update: true
packages: python3
before_install:
- |
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
python3 -m venv venv
source venv/bin/activate
fi
- |
pip install flake8
pip install codecov
pip install pytest --upgrade
pip install pytest-cov
pip install biopython
install:
- python setup.py install
# command to run tests
script:
- |
flake8 src/fastqandfurious.py
pytest --cov=fastqandfurious --cov-report=xml --cov-report=term tests.py
- codecov