Fix invalid artifact path for codequality
This commit is contained in:
parent
90473e064e
commit
e65162842c
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ module Ci
|
|||
metadata: nil,
|
||||
trace: nil,
|
||||
junit: 'junit.xml',
|
||||
codequality: 'codequality.json',
|
||||
codequality: 'gl-code-quality-report.json',
|
||||
sast: 'gl-sast-report.json',
|
||||
dependency_scanning: 'gl-dependency-scanning-report.json',
|
||||
container_scanning: 'gl-container-scanning-report.json',
|
||||
|
|
|
@ -33,7 +33,7 @@ describe Gitlab::Ci::Config::Entry::Reports do
|
|||
|
||||
where(:keyword, :file) do
|
||||
:junit | 'junit.xml'
|
||||
:codequality | 'codequality.json'
|
||||
:codequality | 'gl-code-quality-report.json'
|
||||
:sast | 'gl-sast-report.json'
|
||||
:dependency_scanning | 'gl-dependency-scanning-report.json'
|
||||
:container_scanning | 'gl-container-scanning-report.json'
|
||||
|
|
Loading…
Reference in a new issue