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: flake8:
before_script: before_script:
- pip install tox - pip install tox flake8-gl-codeclimate
stage: lint stage: lint
...@@ -5,2 +5,8 @@ ...@@ -5,2 +5,8 @@
stage: lint 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: py27:
before_script: before_script:
- pip install tox - pip install tox pytest-html
stage: tests stage: tests
...@@ -5,4 +5,4 @@ ...@@ -5,4 +5,4 @@
stage: tests stage: tests
script: tox -e py27 script: tox -e py27 -- --html=py3.html --self-contained-html
artifacts: artifacts:
paths: paths:
...@@ -7,3 +7,4 @@ ...@@ -7,3 +7,4 @@
artifacts: artifacts:
paths: paths:
- py27.html
- py27-deprecated-warnings.json - py27-deprecated-warnings.json
--- ---
py3: py3:
before_script: before_script:
- pip install tox - pip install tox pytest-html
stage: tests stage: tests
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
stage: tests stage: tests
script: tox -e py3 -- --junitxml=report.xml script: tox -e py3 -- --junitxml=report.xml --html=py3.html --self-contained-html
artifacts: artifacts:
when: always when: always
reports: reports:
junit: report.xml junit: report.xml
paths: paths:
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
artifacts: artifacts:
when: always when: always
reports: reports:
junit: report.xml junit: report.xml
paths: paths:
- py3.html
- py3-deprecated-warnings.json - py3-deprecated-warnings.json