From d89cc30862872a373492d855e4a0be6f47a989d5 Mon Sep 17 00:00:00 2001 From: Olivier Mangin Date: Mon, 25 Jan 2021 23:14:53 -0800 Subject: [PATCH] Remove travis configuration. --- .travis.yml | 89 ----------------------------------------------------- 1 file changed, 89 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a03b5d2..0000000 --- a/.travis.yml +++ /dev/null @@ -1,89 +0,0 @@ -# list of environments to test -matrix: - include: - - # Full tests (with online API) - - os: linux - language: python - python: 3.9 - dist: xenial - sudo: true - env: - - TO_TEST=TEST_FULL - - os: osx - language: generic - python: ">=3.6" - env: - - TO_TEST=TEST_FULL - before_install: - - brew outdated python3 || brew install python3 || brew upgrade python3 - - python3 -m venv env - - source env/bin/activate - - # Mock tests (with mock API) - - os: linux - language: python - python: 3.6 - env: - - TO_TEST=TEST_MOCK - - os: linux - language: python - dist: xenial - python: 3.7 - sudo: true - env: - - TO_TEST=TEST_MOCK - - os: linux - language: python - dist: xenial - python: 3.8 - sudo: true - env: - - TO_TEST=TEST_MOCK - - os: linux - language: python - dist: xenial - python: 3.9 - sudo: true - env: - - TO_TEST=TEST_MOCK - - - # Install tests - - os: linux - language: python - python: 2.7 - env: - - TO_TEST=INSTALL - if: type = cron - - os: linux - language: python - dist: xenial - sudo: true - python: 3.9 - env: - - TO_TEST=INSTALL - if: type = cron - - os: osx - language: generic - python: 2.7 - env: - - TO_TEST=INSTALL - if: type = cron - - os: osx - language: generic - python: ">=3.6" - env: - - TO_TEST=INSTALL - if: type = cron - - allow_failures: - - python: 2.7 - -# command to run tests -script: - - python --version - - if [ "$TO_TEST" = "TEST_MOCK" ] || - [ "$TO_TEST" = "TEST_FULL" ]; then PUBS_TESTS_MODE=MOCK python setup.py test; fi - - if [ "$TO_TEST" = "TEST_FULL" ]; then PUBS_TESTS_MODE=COLLECT python setup.py test; fi - - if [ "$TO_TEST" = "INSTALL" ]; then pip install -U pip && pip install pubs && pubs --help && pip uninstall -y pubs; fi