-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitbucket-pipelines.yml
48 lines (48 loc) · 1.1 KB
/
bitbucket-pipelines.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
pipelines:
default:
- parallel:
- step:
name: python:3.9
image: python:3.9
script:
- python3.9 setup.py test
- step:
name: python:3.8
image: python:3.8
script:
- python3.8 setup.py test
- step:
name: python:3.7
image: python:3.7
script:
- python3.7 setup.py test
- step:
name: python:3.6
image: python:3.6
script:
- python3.6 setup.py test
- step:
name: python:3.5
image: python:3.5
script:
- python3.5 setup.py test
- step:
name: python:3.4
image: python:3.4
script:
- python3.4 setup.py test
- step:
name: python:2
image: python:2
script:
- python setup.py test
- step:
name: pypy:2
image: pypy:2
script:
- pypy setup.py test
- step:
name: pypy:3
image: pypy:3
script:
- pypy3 setup.py test