From 1c25f25ab0cc9f85512c7db1e5546fc5900ab785 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 13 Oct 2020 21:27:17 -0400 Subject: [PATCH] Drop travisCI; it's slower and has worse windows support. --- .travis.yml | 68 ----------------------------------------------------- 1 file changed, 68 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 484f64d..0000000 --- a/.travis.yml +++ /dev/null @@ -1,68 +0,0 @@ -language: python -dist: xenial -sudo: required - -matrix: - include: - - name: "Windows, Python Latest: multiprocessing" - os: windows - language: sh - python: 3.x # only works on linux - env: SPAWN_BACKEND="mp" - before_install: - - choco install python3 --params "/InstallDir:C:\\Python" - - export PATH="/c/Python:/c/Python/Scripts:$PATH" - - python -m pip install --upgrade pip wheel - - - name: "Windows, Python Latest: trio" - os: windows - language: sh - python: 3.x # only works on linux - env: SPAWN_BACKEND="trio" - before_install: - - choco install python3 --params "/InstallDir:C:\\Python" - - export PATH="/c/Python:/c/Python/Scripts:$PATH" - - python -m pip install --upgrade pip wheel - - - name: "Windows, Python 3.7: multiprocessing" - os: windows - python: 3.7 # only works on linux - env: SPAWN_BACKEND="mp" - language: sh - before_install: - - choco install python3 --version 3.7.4 --params "/InstallDir:C:\\Python" - - export PATH="/c/Python:/c/Python/Scripts:$PATH" - - python -m pip install --upgrade pip wheel - - - name: "Windows, Python 3.7: trio" - os: windows - python: 3.7 # only works on linux - env: SPAWN_BACKEND="trio" - language: sh - before_install: - - choco install python3 --version 3.7.4 --params "/InstallDir:C:\\Python" - - export PATH="/c/Python:/c/Python/Scripts:$PATH" - - python -m pip install --upgrade pip wheel - - - name: "Python 3.7: multiprocessing" - python: 3.7 # this works for Linux but is ignored on macOS or Windows - env: SPAWN_BACKEND="mp" - - name: "Python 3.7: trio" - python: 3.7 # this works for Linux but is ignored on macOS or Windows - env: SPAWN_BACKEND="trio" - - - name: "Python 3.8: multiprocessing" - python: 3.8 # this works for Linux but is ignored on macOS or Windows - env: SPAWN_BACKEND="mp" - - name: "Python 3.8: trio" - python: 3.8 # this works for Linux but is ignored on macOS or Windows - env: SPAWN_BACKEND="trio" - -install: - - cd $TRAVIS_BUILD_DIR - - pip install -U pip - - pip install -U . -r requirements-test.txt -r requirements-docs.txt --upgrade-strategy eager - -script: - - mypy tractor/ --ignore-missing-imports - - pytest tests/ --spawn-backend=${SPAWN_BACKEND}