Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • open-source/gitlab-ci-templates
1 result
Show changes
Commits on Source (2)
---
flake8:
before_script:
- pip install tox
- pip install tox flake8-gl-codeclimate
stage: lint
......@@ -5,2 +5,8 @@
stage: lint
script: tox -e flake8
script:
- tox -e flake8 -- --exit-zero --format gl-codeclimate --output-file gl-code-quality-report.json
- tox -e flake8
artifacts:
when: always
reports:
codequality: gl-code-quality-report.json
---
py27:
before_script:
- pip install tox
- pip install tox pytest-html
stage: tests
......@@ -5,4 +5,4 @@
stage: tests
script: tox -e py27
script: tox -e py27 -- --html=py3.html --self-contained-html
artifacts:
paths:
......@@ -7,3 +7,4 @@
artifacts:
paths:
- py27.html
- py27-deprecated-warnings.json
---
py3:
before_script:
- pip install tox
- pip install tox pytest-html
stage: tests
......@@ -5,7 +5,7 @@
stage: tests
script: tox -e py3 -- --junitxml=report.xml
script: tox -e py3 -- --junitxml=report.xml --html=py3.html --self-contained-html
artifacts:
when: always
reports:
junit: report.xml
paths:
......@@ -7,6 +7,7 @@
artifacts:
when: always
reports:
junit: report.xml
paths:
- py3.html
- py3-deprecated-warnings.json