summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Kozono <mkozono@gmail.com>2018-02-12 20:42:16 -0800
committerMichael Kozono <mkozono@gmail.com>2018-02-12 20:42:16 -0800
commit68a2ddd1495b6c6b5fd56018f50eecc553e14562 (patch)
tree2f5d16fc39f07b79e2c5a6eb2f40795c677f723c
parent201f53e96d26d4babfc6a4492576f873219d4e6f (diff)
downloadgitlab-ce-qa/mk-fix-artifact-creation.tar.gz
Fix artifact creationqa/mk-fix-artifact-creation
-rw-r--r--qa/qa/specs/features/project/pipelines_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/qa/qa/specs/features/project/pipelines_spec.rb b/qa/qa/specs/features/project/pipelines_spec.rb
index 1bb7730e06c..74f6474443d 100644
--- a/qa/qa/specs/features/project/pipelines_spec.rb
+++ b/qa/qa/specs/features/project/pipelines_spec.rb
@@ -69,7 +69,7 @@ module QA
tags:
- qa
- test
- script: echo "CONTENTS" > my-artifacts/artifact.txt
+ script: mkdir my-artifacts; echo "CONTENTS" > my-artifacts/artifact.txt
artifacts:
paths:
- my-artifacts/
@@ -95,7 +95,7 @@ module QA
expect(pipeline).to have_build('test-success', status: :success)
expect(pipeline).to have_build('test-failure', status: :failed)
expect(pipeline).to have_build('test-tags', status: :pending)
- expect(pipeline).to have_build('test-artifacts', status: :failed)
+ expect(pipeline).to have_build('test-artifacts', status: :success)
end
end
end