about summary refs log tree commit diff stats
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml20
1 files changed, 0 insertions, 20 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index ce55f33e..00000000
--- a/.travis.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-dist: 'xenial'
-
-language: 'python'
-jobs:
-  include:
-    - name: "Python 2.7 no linting"
-      python: '2.7'
-      env: PY2='TRUE'
-    - name: "Python 3"
-      python:
-        - '3.5'
-        - '3.6'
-        - '3.7'
-        - '3.8'
-
-install:
-  - 'pip install -r requirements.txt'
-
-script:
-  - 'if [ -z "${PY2}" ]; then make test; else make test_doctest test_pytest test_other; fi'