FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects

add Auto-DevOps GitLab CI template

Merged Dr Rich Wareham requested to merge issue-7-autodevops into master
2 files
+ 24
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 12
0
@@ -6,6 +6,16 @@
#
# See also: https://gitlab.com/gitlab-org/gitlab-ce/issues/19199
include:
# Bring in the AutoDevOps template from GitLab.
# It can be viewed at:
# https://gitlab.com/gitlab-org/gitlab-ee/blob/master/lib/gitlab/ci/templates/Auto-DevOps.gitlab-ci.yml
- template: Auto-DevOps.gitlab-ci.yml
variables:
# We use matrix testing (below) rather than the Auto-DevOps "test" job.
TEST_DISABLED: "true"
# Test code coverage
coverage:
extends: .test
@@ -119,6 +129,8 @@ python37-django21:
# Base test template job.
.test:
stage: test
image: python:${PYTHON_VERSION}
script:
Loading