From 949c6b589a895b5207752d9a0b1640cd5fd0d907 Mon Sep 17 00:00:00 2001 From: John-Paul Dakran Date: Fri, 8 Apr 2022 14:16:01 -0400 Subject: [PATCH] Remove travis ci integration since we move to github actions for ci (#530) --- .travis.yml | 23 ----------------------- tox.ini | 2 +- 2 files changed, 1 insertion(+), 24 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 29fdde1d3..000000000 --- a/.travis.yml +++ /dev/null @@ -1,23 +0,0 @@ -language: python -os: linux -dist: xenial -jobs: - include: - - env: TOXENV=py35 - python: 3.5 - - env: TOXENV=py36 - python: 3.6 - - env: TOXENV=py37 - python: 3.7 - - env: TOXENV=py38 - python: 3.8 - dist: xenial - - env: TOXENV=py39 - python: 3.9 - dist: focal -install: - - pip install tox -script: make test -cache: - directories: - - $HOME/.cache/pre-commit diff --git a/tox.ini b/tox.ini index c881d3ad4..14d2c8439 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] project = detect_secrets -# These should match the travis env list +# These should match the ci python env list envlist = py{36,37,38,39},mypy skip_missing_interpreters = true tox_pip_extensions_ext_venv_update = true