summaryrefslogtreecommitdiff
path: root/bitbucket-pipelines.yml
blob: fc745f0fd458b245c14a66649015902965c2308f (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.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