Browse Source

New translations .travis.yml (Chinese Simplified)

l10n_v0.2.x
linlin 4 years ago
parent
commit
e7c60627fb
1 changed files with 21 additions and 0 deletions
  1. +21
    -0
      lang/zh/.travis.yml

+ 21
- 0
lang/zh/.travis.yml View File

@@ -0,0 +1,21 @@
---
language: python
python:
- '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:
- pip install -r requirements.txt
- pip install wheel
script:
- python setup.py bdist_wheel
- if [ $TRAVIS_PYTHON_VERSION == 3.6 ]; then pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/; else pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/ --ignore=gklearn/tests/test_median_preimage_generator.py; fi
after_success:
- codecov

Loading…
Cancel
Save