From 7ee418053ef4d40dcfc1abd61b39bc8bcf0399a8 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 16 May 2024 06:35:14 +0200 Subject: [PATCH] Delete .travis.yml As discussed at https://github.com/ahupp/python-magic/pull/317#issuecomment-2111634995 this file is useless without a paid subscription to Travis CI. GitHub Actions is free to open source projects but Travis CI is not. * #318 --- .travis.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 08c3d0e..0000000 --- a/.travis.yml +++ /dev/null @@ -1,26 +0,0 @@ -language: python -dist: xenial -cache: pip - -python: - - "2.7" - - "3.5" - - "3.6" - - "3.7" - - "3.8" - - "3.9" - - "3.10" - - "3.11" - - "3.12" - - "3.13" - -install: - - pip install coverage coveralls codecov - - pip install . - -script: - - LC_ALL=en_US.UTF-8 coverage run -m unittest test - -after_success: - - coveralls - - codecov