From 6c84764b192523c6b4bfd6c98c7cef50997ab182 Mon Sep 17 00:00:00 2001 From: cnovel Date: Mon, 20 Jun 2022 19:31:57 +0200 Subject: [PATCH] Remove travisCI since it now requires a credit card --- .travis.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index c0aacbe..0000000 --- a/.travis.yml +++ /dev/null @@ -1,36 +0,0 @@ -language: python -matrix: - include: - - name: "Xenial Linux - Python 3.7.1" - python: 3.7 # this works for Linux but is ignored on macOS or Windows - dist: xenial # required for Python >= 3.7 - services: - - xvfb - before_install: - - python --version - - pip install -U pip - - pip install codecov - - name: "macOS - Python 3.7.2" - os: osx - osx_image: xcode10.2 # Python 3.7.2 running on macOS 10.14.3 - language: shell # 'language: python' is an error on Travis CI macOS - before_install: - - python3 --version - - pip3 install -U pip - - pip3 install codecov - - name: "Windows - Python 3.7.2" - 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.7.2 - - python --version - - python -m pip install --upgrade pip - - pip3 install codecov - env: PATH=/c/Python37:/c/Python37/Scripts:$PATH -# command to install dependencies -install: - - pip3 install . -# command to run tests -script: - - pytest -v --cov=src - - codecov \ No newline at end of file