From 4e129cdf43e519fb05a6b0c7cb73ef1830f2a11b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=A3=9E=E9=BE=99?= <562826179@qq.com> Date: Mon, 6 May 2019 22:15:29 +0800 Subject: [PATCH] Delete .travis.yml --- .travis.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index d13c3cc77..000000000 --- a/.travis.yml +++ /dev/null @@ -1,24 +0,0 @@ -group: travis_latest -language: python -cache: pip -matrix: - allow_failures: - - python: 2.7 - include: - - python: 2.7 - env: TEST_DIR=./src/py2.x - - python: 3.7 - env: TEST_DIR=./src/py3.x - dist: xenial # required for Python 3.7 -install: - - pip install flake8 -before_script: - # stop the build if there are Python syntax errors or undefined names - - flake8 ${TEST_DIR} --count --select=E9,F63,F72,F82 --show-source --statistics - # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - - flake8 ${TEST_DIR} --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics -script: - - true # add other tests here -notifications: - on_success: change - on_failure: change # `always` will be the setting once code changes slow down