Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Open Subsurface Data Universe Software
Platform
Platform Validation
Commits
946bb5bc
Commit
946bb5bc
authored
Jul 21, 2020
by
David Diederich
Browse files
Extra parenthesis to get order of operations correction between OR and AND operators.
parent
aa9246a6
Pipeline
#3892
failed with stages
in 8 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
generate-pipeline.py
View file @
946bb5bc
...
...
@@ -47,13 +47,13 @@ with open('test-execution.gitlab-ci.yml', 'w') as pipelineConfig:
' script:'
,
' - TEST_COLLECTION_CONFIG=$(eval echo \$$TEST_COLLECTION_CONFIG_VARNAME)'
,
' - |'
,
' test -f "$TEST_COLLECTION_CONFIG" || ('
,
' test -f "$TEST_COLLECTION_CONFIG" ||
(
('
,
' echo TEST_COLLECTION_CONFIG does not appear to be a file.'
,
' echo This probably means that you are running on a non-protected branch and did not'
,
' echo provide the deployment secrets manually. Or it could be a misconfigured variable.'
,
' echo'
,
' echo Warning: I am intentionally not printing the value of the variable in case it is the secret content itself.'
,
' ) && false'
,
' ) && false
)
'
,
' - newman --version '
,
#' - npm install -g newman-reporter-html',
#' - npm install -g newman-reporter-htmlextra',
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment