From e7c60627fbd6197055799ccfe1d28c1d2b80c99f Mon Sep 17 00:00:00 2001 From: linlin Date: Sun, 4 Oct 2020 19:15:50 +0200 Subject: [PATCH] New translations .travis.yml (Chinese Simplified) --- lang/zh/.travis.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lang/zh/.travis.yml diff --git a/lang/zh/.travis.yml b/lang/zh/.travis.yml new file mode 100644 index 0000000..2e79bef --- /dev/null +++ b/lang/zh/.travis.yml @@ -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