Remove travis config
authorIustin Pop <iustin@k1024.org>
Sat, 5 Jun 2021 17:55:05 +0000 (19:55 +0200)
committerIustin Pop <iustin@k1024.org>
Sat, 5 Jun 2021 17:55:05 +0000 (19:55 +0200)
.travis.yml [deleted file]

diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644 (file)
index ccf1b20..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-language: python
-
-# enable caching of installed packages.
-cache: pip
-
-python:
-  - "3.4"
-  - "3.5"
-  - "3.6"
-  - "3.7"
-  - "3.8"
-  - "3.9-dev"
-  - "nightly"
-
-# we don't need any python dependencies, but a ruby one for coverage:
-install:
-  - gem install coveralls-lcov
-  - pip install pytest
-  - pip install codecov
-
-# the test command:
-script:
-  - python setup.py build_ext -i
-  - python -m pytest tests
-  - make clean
-  - CFLAGS="-coverage" python setup.py build_ext -i
-  - python -m pytest tests
-
-# but we do need a system library:
-addons:
-  apt:
-    packages:
-      - libacl1-dev
-      - lcov
-
-after_success:
-  - lcov --capture --no-external --directory . --output-file coverage.info
-  - COVERALLS_PARALLEL=true coveralls-lcov coverage.info
-  - codecov
-
-notifications:
-  webhooks: https://coveralls.io/webhook