From 08a6de6234bc873801366d1cb2302e47d0044b7a Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sat, 5 Jun 2021 02:07:37 +0200 Subject: [PATCH] Remove the travis config GitHub Actions seems pretty stable now, let's switch over. --- .travis.yml | 54 ----------------------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 9c43b3c..0000000 --- a/.travis.yml +++ /dev/null @@ -1,54 +0,0 @@ -language: python - -# enable caching of installed packages. -cache: pip - -# let's test as many versions as we can! -python: - - "3.4" - - "3.5" - - "3.6" - - "3.7" - - "3.8" - - "3.9-dev" - - "nightly" - -# enable OSX support, with only system Python, and newer Python on Linux: -#matrix: -# include: -# - os: osx -# # specify a reasonably newer xcode so that brew works -# osx_image: xcode11 -# language: generic -# python: - -# install coverage helper: -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 - -# install lcov, platform-specific but clean: -addons: - apt: - packages: - - lcov - homebrew: - packages: - - 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 -- 2.39.2