-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.travis.yml
69 lines (65 loc) · 1.26 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
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
dist: xenial
sudo: true
compiler: clang
- os: linux
python: 3.7
compiler: gcc
dist: xenial
sudo: true
- os: linux
python: 3.8
compiler: gcc
dist: xenial
sudo: true
- os: linux
python: 3.8
compiler: clang
dist: xenial
sudo: true
- os: osx
python: 3.5
compiler: clang
- os: osx
python: 3.6
compiler: clang
- os: osx
python: 3.7
compiler: clang
- os: osx
python: 3.8
compiler: clang
before_install:
- pip install codecov
- pip install pytest --upgrade
- pip install pytest-cov
- pip install flake8
install:
- python setup.py install
# command to run tests
script:
- |
flake8 src/minhashsketch.py src/sequence.py \
src/tests/test_minhashsketch.py src/tests/test_sequence.py
- |
python -m pytest --cov=mashingpumpkins --cov-report xml --cov-report term \
src/tests/
- codecov