From b0649e5517406ea8c32d19db4d15e46893ee92bd Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Wed, 26 May 2021 16:26:51 +0300 Subject: [PATCH] Remove .travis.yml I use GitHub Actions now; the Travis CI beg-for-a-limited-amount-of-free-credits-every-month model does not work for me. --- .travis.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 4652ac8..0000000 --- a/.travis.yml +++ /dev/null @@ -1,30 +0,0 @@ -language: python -dist: focal -cache: pip -python: - - 2.7 - - 3.6 - - 3.7 - - 3.8 - - 3.9 - - pypy2 - - pypy3 -install: - - pip install coverage coveralls flake8 pytest - - pip install .[test] -script: - - coverage run -m pytest - - flake8 src setup.py -after_success: - - coveralls - - coverage report -m --fail-under=100 - -notifications: - irc: - channels: - - "chat.freenode.net##mgedmin" - on_success: change - on_failure: always - template: - # ping my nick so I get a pushbullet notification on my phone - - "mgedmin: %{repository_name} (%{branch}) build %{result}: %{build_url}"