Commit acbda343 authored by Mark Lapierre's avatar Mark Lapierre

Test using a unique tag name

This allows the test to be retried without failing because the
tag can't be created.
parent 88b24406
...@@ -90,7 +90,7 @@ module QA ...@@ -90,7 +90,7 @@ module QA
tag = Resource::Tag.fabricate_via_api! do |tag| tag = Resource::Tag.fabricate_via_api! do |tag|
tag.project = @project tag.project = @project
tag.ref = 'master' tag.ref = 'master'
tag.name = 'test_tag' tag.name = "test_tag_#{SecureRandom.hex(8)}"
end end
expect_error_on_push(file: standard_file, tag: tag.name, expect_error_on_push(file: standard_file, tag: tag.name,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment