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, 34 insertions, 0 deletions
diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml
new file mode 100644
index 00000000..4a9f1b6d
--- /dev/null
+++ b/bitbucket-pipelines.yml
@@ -0,0 +1,34 @@
+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