diff options
author | toonn <toonn@toonn.io> | 2021-07-15 19:33:30 +0200 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2021-07-20 23:20:47 +0200 |
commit | f03c01f2b00f9c07ac00a6932c834e3115e3a5e8 (patch) | |
tree | 77d0d37e47d0acf22c67576bb516ca576df64b66 | |
parent | 3ad698bb9719a8824520940cf4212e84e199dcc8 (diff) | |
download | ranger-f03c01f2b00f9c07ac00a6932c834e3115e3a5e8.tar.gz |
Goodbye Travis, don't let the door hit you on the way out!
Travis CI has stopped supporting open source projects without jumping through hoops. We're giving up on them in favor of other alternatives, GH Actions and potentially Circle CI.
-rw-r--r-- | .travis.yml | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index ce55f33e..00000000 --- a/.travis.yml +++ /dev/null @@ -1,20 +0,0 @@ -dist: 'xenial' - -language: 'python' -jobs: - include: - - name: "Python 2.7 no linting" - python: '2.7' - env: PY2='TRUE' - - name: "Python 3" - python: - - '3.5' - - '3.6' - - '3.7' - - '3.8' - -install: - - 'pip install -r requirements.txt' - -script: - - 'if [ -z "${PY2}" ]; then make test; else make test_doctest test_pytest test_other; fi' |