summaryrefslogtreecommitdiff
path: root/spec/services/ci/pipelines/create_artifact_service_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/services/ci/pipelines/create_artifact_service_spec.rb')
-rw-r--r--spec/services/ci/pipelines/create_artifact_service_spec.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/services/ci/pipelines/create_artifact_service_spec.rb b/spec/services/ci/pipelines/create_artifact_service_spec.rb
index 6f177889ed3..4e9248d9d1a 100644
--- a/spec/services/ci/pipelines/create_artifact_service_spec.rb
+++ b/spec/services/ci/pipelines/create_artifact_service_spec.rb
@@ -7,7 +7,8 @@ RSpec.describe ::Ci::Pipelines::CreateArtifactService do
subject { described_class.new.execute(pipeline) }
context 'when pipeline has coverage reports' do
- let(:pipeline) { create(:ci_pipeline, :with_coverage_reports) }
+ let(:project) { create(:project, :repository) }
+ let(:pipeline) { create(:ci_pipeline, :with_coverage_reports, project: project) }
context 'when pipeline is finished' do
it 'creates a pipeline artifact' do