summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml43
-rw-r--r--appveyor.yml23
2 files changed, 0 insertions, 66 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 57c8b935d..000000000
--- a/.travis.yml
+++ /dev/null
@@ -1,43 +0,0 @@
-# Wire up travis
-language: python
-sudo: false
-
-matrix:
- include:
- - python: 3.5
- env: TOXENV=py35
- - python: 3.6
- env: TOXENV=py36
- - python: pypy3
- env: TOXENV=pypy3
- - python: 3.8
- env: TOXENV=py38-cover,coverage
- - python: 3.6
- env: TOXENV=docs
- - python: 3.6
- env: TOXENV=lint
- - python: 3.7
- env: TOXENV=py37
- dist: xenial
- sudo: true
- - python: 3.8
- env: TOXENV=py38
- dist: xenial
- sudo: true
-
-install:
- - travis_retry pip install tox
-
-script:
- - travis_retry tox
-
-cache:
- directories:
- - $HOME/.cache/pip
-
-notifications:
- email:
- - pyramid-checkins@lists.repoze.org
- irc:
- channels:
- - "chat.freenode.net#pyramid"
diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644
index ba07274f8..000000000
--- a/appveyor.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-environment:
- matrix:
- - PYTHON: "C:\\Python35"
- TOXENV: "py35"
- - PYTHON: "C:\\Python36"
- TOXENV: "py36"
- - PYTHON: "C:\\Python37"
- TOXENV: "py37"
- - PYTHON: "C:\\Python38"
- TOXENV: "py38"
-
-cache:
- - '%LOCALAPPDATA%\pip\Cache'
-
-version: '{branch}.{build}'
-
-install:
- - "%PYTHON%\\python.exe -m pip install tox"
-
-build: off
-
-test_script:
- - "%PYTHON%\\Scripts\\tox.exe"