summaryrefslogtreecommitdiff
path: root/bitbucket-pipelines.yml
blob: 4a9f1b6d6dc23c6a07f9dd303db0af6d51661076 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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