summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatth?us G. Chajdas <dev@anteru.net>2018-11-24 17:56:44 +0100
committerMatth?us G. Chajdas <dev@anteru.net>2018-11-24 17:56:44 +0100
commita37f5614f11f3d5af660a024f1749dc7eee7e8ad (patch)
treefe3227edee3dd8ed0ab4e23cd3aefdee4c8c74a4
parentaa765094469cb90eff740b46a7c5c5903204c098 (diff)
downloadpygments-a37f5614f11f3d5af660a024f1749dc7eee7e8ad.tar.gz
Add Bitbucket CI configuration.
-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..e3c74d6e
--- /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.4
+ image: python:3.4
+ caches:
+ - pip
+ script:
+ - pip install -r requirements.txt
+ - tox -e py34
+ - 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 \ No newline at end of file