summaryrefslogtreecommitdiff
path: root/bitbucket-pipelines.yml
diff options
context:
space:
mode:
Diffstat (limited to 'bitbucket-pipelines.yml')
-rw-r--r--bitbucket-pipelines.yml34
1 files changed, 0 insertions, 34 deletions
diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml
deleted file mode 100644
index 4a9f1b6d..00000000
--- a/bitbucket-pipelines.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-pipelines:
- default:
- - step:
- name: Test on Python 2.7
- image: python:2.7
- caches:
- - pip
- script:
- - pip install -r requirements.txt
- - tox -e py27
- - step:
- name: Test on Python 3.5
- image: python:3.5
- caches:
- - pip
- script:
- - pip install -r requirements.txt
- - tox -e py35
- - step:
- name: Test on Python 3.6
- image: python:3.6
- caches:
- - pip
- script:
- - pip install -r requirements.txt
- - tox -e py36
- - step:
- name: Test on Python 3.7
- image: python:3.7
- caches:
- - pip
- script:
- - pip install -r requirements.txt
- - tox -e py37