summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/tests.yml2
-rw-r--r--.travis.yml34
2 files changed, 1 insertions, 35 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 003c3f1..65224d1 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -46,4 +46,4 @@ jobs:
run: tox -e {{ matrix.env || 'py'}}
- name: Coverage
run: coveralls
- if: {{ matrix.env == 'coverage'}}
+ if: matrix.env == 'coverage'
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 3ca6074..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-# Generated from:
-# https://github.com/zopefoundation/meta/tree/master/config/pure-python
-language: python
-python:
- - 2.7
- - pypy
- - 3.5
- - 3.6
- - 3.7
- - 3.8
- - pypy3
-
-matrix:
- include:
- - name: "lint"
- python: 3.7
- env: TOXENV="lint"
- - name: "coverage"
- python: 3.7
- env: TOXENV="coverage"
- after_success:
- - coveralls
-
-install:
- - pip install -U pip
- - pip install -U tox-travis coveralls
-
-script:
- - tox
-
-notifications:
- email: false
-
-cache: pip