diff options
author | drebs <drebs@leap.se> | 2016-09-24 15:57:54 -0300 |
---|---|---|
committer | drebs <drebs@leap.se> | 2016-09-30 09:08:47 -0300 |
commit | 887fd917a19654aa6a7c6c54be3f22c3b6c79b92 (patch) | |
tree | 26f6007adf3f4dc91d238284334b336670bb89a5 /.gitlab-ci.yml | |
parent | d5bbe37495ee733be5f78de72364f3ec48ed7a0d (diff) |
[test] add flake8 code check and generalize name of tox env
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 76d22b3c..bdb5505f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,13 +1,13 @@ stages: - - syntax + - code-check - tests - benchmark -syntax: - stage: syntax +code-check: + stage: code-check script: - cd testing - - tox -e pep8 + - tox -e code-check tests: stage: tests |