Skip to content

Commit f4d279e

Browse files
committed
Update .travis.yml.
1 parent d040440 commit f4d279e

File tree

1 file changed

+23
-3
lines changed

1 file changed

+23
-3
lines changed

.travis.yml

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
language: python
2+
23
python:
34
- '3.5'
45
- '3.6'
56
- '3.7'
67
- '3.8'
8+
79
before_install:
810
- python --version
911
- pip install -U pip
@@ -16,9 +18,27 @@ install:
1618
- pip install -r requirements.txt
1719
- pip install wheel
1820

19-
script:
20-
- python setup.py bdist_wheel
21-
- pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/
21+
jobs:
22+
include:
23+
- python: 3.5
24+
script:
25+
- python setup.py bdist_wheel
26+
- pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/ --ignore=gklearn/tests/test_median_preimage_generator.py
27+
include:
28+
- python: 3.6
29+
script:
30+
- python setup.py bdist_wheel
31+
- pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/
32+
include:
33+
- python: 3.7
34+
script:
35+
- python setup.py bdist_wheel
36+
- pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/ --ignore=gklearn/tests/test_median_preimage_generator.py
37+
include:
38+
- python: 3.8
39+
script:
40+
- python setup.py bdist_wheel
41+
- pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/ --ignore=gklearn/tests/test_median_preimage_generator.py
2242

2343
after_success:
2444
- codecov

0 commit comments

Comments
 (0)