blob: 04a9fb7185f0412f6dbf8c51d9c67c3ca796e803 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
stages:
- test
pyflakes2:
stage: test
script:
- ./ci/install.sh python2.7 pyflakes
- pyflakes .
image: debian:buster
.pyflakes3:
stage: test
script:
- ./ci/install.sh python3 pyflakes3
- pyflakes3 .
image: debian:stable
|