|
|
@@ -1,9 +1,11 @@ |
|
|
|
language: python |
|
|
|
|
|
|
|
python: |
|
|
|
- '3.5' |
|
|
|
- '3.6' |
|
|
|
- '3.7' |
|
|
|
- '3.8' |
|
|
|
|
|
|
|
before_install: |
|
|
|
- python --version |
|
|
|
- pip install -U pip |
|
|
@@ -16,9 +18,27 @@ install: |
|
|
|
- pip install -r requirements.txt |
|
|
|
- pip install wheel |
|
|
|
|
|
|
|
script: |
|
|
|
- python setup.py bdist_wheel |
|
|
|
- pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/ |
|
|
|
jobs: |
|
|
|
include: |
|
|
|
- python: 3.5 |
|
|
|
script: |
|
|
|
- python setup.py bdist_wheel |
|
|
|
- pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/ --ignore=gklearn/tests/test_median_preimage_generator.py |
|
|
|
include: |
|
|
|
- python: 3.6 |
|
|
|
script: |
|
|
|
- python setup.py bdist_wheel |
|
|
|
- pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/ |
|
|
|
include: |
|
|
|
- python: 3.7 |
|
|
|
script: |
|
|
|
- python setup.py bdist_wheel |
|
|
|
- pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/ --ignore=gklearn/tests/test_median_preimage_generator.py |
|
|
|
include: |
|
|
|
- python: 3.8 |
|
|
|
script: |
|
|
|
- python setup.py bdist_wheel |
|
|
|
- pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/ --ignore=gklearn/tests/test_median_preimage_generator.py |
|
|
|
|
|
|
|
after_success: |
|
|
|
- codecov |