From e05e3f959e438bf1b90f1bbd253d0f1381b55fe1 Mon Sep 17 00:00:00 2001 From: Ruben Verweij <ruben@lighthacking.nl> Date: Wed, 23 Jun 2021 21:00:47 +0200 Subject: [PATCH] Remove travis, migrate to github actions --- .travis.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 9e110a3..0000000 --- a/.travis.yml +++ /dev/null @@ -1,34 +0,0 @@ -env: - global: - - CC_TEST_REPORTER_ID=8582900c285e4da0f253555b1bac1ba501bd6ff07850b0f227166b3cdac59ecc - -language: python - -git: - depth: 3 - -notifications: - email: false - -python: - - 3.6 - - 3.7 - - 3.8 - - 3.9 - -install: - - pip install --upgrade pip setuptools wheel - - pip install --only-binary=numpy numpy - - pip install -r requirements.txt - - pip install 'coverage>=4.0,<4.4' --force-reinstall # Upstream bug: https://github.com/nedbat/coveragepy/issues/578 - -before_script: - - 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 - - python setup.py develop # need to install to get version number - -script: python ./test.py - -after_script: - - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT -- GitLab