You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- language: python
- python:
- - '3.6.9'
- - '3.5'
- - '3.6'
- - '3.7'
- # - '3.8'
- before_install:
- - python --version
- - pip install -U pip
- - pip install -U pytest
- - pip install codecov
- - pip install coverage
- - pip install pytest-cov
-
- install:
- - if [ $TRAVIS_PYTHON_VERSION == 3.8 ];
- then pip install -r gklearn/tests/requirements.txt;
- else pip install -r requirements.txt;
- fi
- - pip install wheel
-
- script:
- - python setup.py bdist_wheel
- - pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/
-
- after_success:
- - codecov
|