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