From 0e1f28947eb447b7477f8539cbcfdcfb3ff221cd Mon Sep 17 00:00:00 2001 From: Pioverpie Date: Tue, 3 Nov 2020 01:08:26 -0500 Subject: [PATCH] Remove Travis CI due to price change --- .travis.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 8bd9214..0000000 --- a/.travis.yml +++ /dev/null @@ -1,32 +0,0 @@ -os: linux -dist: xenial -language: python -jobs: - include: - - python: "3.6" # current default Python on Travis CI - - python: "3.7" - - python: "3.8" - - python: "3.9" - - python: "3.9-dev" # 3.9 development branch - - python: "nightly" # nightly build - - name: "Python 3.7.4 on macOS" - os: osx - osx_image: xcode11.2 # Python 3.7.4 running on macOS 10.14.4 - language: shell # 'language: python' is an error on Travis CI macOS - - name: "Python 3.8.0 on Windows" - os: windows # Windows 10.0.17134 N/A Build 17134 - language: shell # 'language: python' is an error on Travis CI Windows - before_install: - - choco install python --version 3.8.0 - - python -m pip install --upgrade pip - env: PATH=/c/Python38:/c/Python38/Scripts:$PATH -# command to install dependencies -install: - - pip3 install -U pip - - pip install -U -r requirements.txt - - pip install -U coverage pytest pytest-asyncio -# command to run tests -script: - - python3 -m coverage run -m pytest || python -m coverage run -m pytest -after_success: - - bash <(curl -s https://codecov.io/bash)