blob: 8e9f634e0f257cf029839b102ed4c6be1e7116f7 (
plain) (
tree)
|
|
stages:
- test
- success
- failure
pyflakes2:
stage: test
script:
- ./ci/install.sh python2.7 pyflakes
- pyflakes .
image: debian:unstable
.pyflakes3:
stage: test
script:
- ./ci/install.sh python3 pyflakes3
- pyflakes3 .
image: debian:unstable
success:
stage: success
script:
- echo "do nothing"
image: debian:stable
when: on_success
failure:
stage: failure
script:
- echo "do nothing"
image: debian:stable
when: on_failure
|