chore: Remove Travis CI config

Travis is now a paying service, so there’s no way this will ever work again.
This commit is contained in:
Gergely Polonkai 2023-10-31 15:08:27 +01:00
parent 975467030a
commit 88a3311919
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4

View File

@ -1,39 +0,0 @@
language: python
matrix:
include:
- os: linux
python: 3.5
dist: xenial
- os: linux
python: 3.6
dist: xenial
- os: linux
python: 3.7
dist: xenial
- os: linux
python: 3.8-dev
dist: xenial
# shamelessly stolen from https://github.com/pyload/pyload
- os: osx
language: sh
env:
- HOMEBREW_NO_INSTALL_CLEANUP=1
- HOMEBREW_NO_ANALYTICS=1
before_cache:
- rm -f "$HOME/Library/Caches/pip/log/debug.log"
cache:
directories:
- "$HOME/Library/Caches/pip"
addons:
homebrew:
packages: python3
before_install:
- python3 -m pip install --upgrade virtualenv
- virtualenv -p python3 --system-site-packages "$HOME/venv"
- source "$HOME/venv/bin/activate"
install:
- pip install .[tests]
- pip install coveralls
script: pytest
after_success:
- coveralls