File tree Expand file tree Collapse file tree 1 file changed +23
-3
lines changed Expand file tree Collapse file tree 1 file changed +23
-3
lines changed Original file line number Diff line number Diff line change 1
1
language : python
2
+
2
3
python :
3
4
- ' 3.5'
4
5
- ' 3.6'
5
6
- ' 3.7'
6
7
- ' 3.8'
8
+
7
9
before_install :
8
10
- python --version
9
11
- pip install -U pip
@@ -16,9 +18,27 @@ install:
16
18
- pip install -r requirements.txt
17
19
- pip install wheel
18
20
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
22
42
23
43
after_success :
24
44
- codecov
You can’t perform that action at this time.
0 commit comments