From: Daniel Feldroy Date: Mon, 21 Sep 2020 17:53:13 +0000 (-0700) Subject: Delete .travis.yml X-Git-Tag: 1.5.2~8 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9e2573cf6014e42eec7fa291ecb10259ec79b840;p=cached-property.git Delete .travis.yml We're now on GitHub actions! Yay! 👍 --- diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 1cf7fa4..0000000 --- a/.travis.yml +++ /dev/null @@ -1,37 +0,0 @@ -# Config file for automatic testing at travis-ci.org -sudo: false -language: python - -env: - global: - - CC_TEST_REPORTER_ID=56a0691204179e8edcdde4c7ecab73b3693706aa1186ed018ca78acc663520cf - -before_script: # code coverage tool - - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - - chmod +x ./cc-test-reporter - - ./cc-test-reporter before-build - -# command to run tests and save coverage -script: - - py.test --cov cached_property - -after_script: - - coverage report -m - - coverage xml - - ./cc-test-reporter format-coverage --input-type coverage.py --debug - - ./cc-test-reporter upload-coverage --debug -python: - - "3.6" - - "3.5" - - "3.4" - - "2.7" - - "pypy" - -matrix: - include: - - python: 3.7 - dist: xenial - sudo: true - -# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors -install: pip install -r requirements.txt