Commit 23c31a0b authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Skip tricky test for semaphore

parent b7cf72f6
......@@ -24,7 +24,7 @@ Feature: Project Source Browse Files
Given I click on "new file" link in repo
Then I can see new file page
@javascript
@javascript @tricky
Scenario: I can create and commit file
Given I click on "new file" link in repo
And I edit code
......
......@@ -2,9 +2,15 @@ Rake::Task["spinach"].clear if Rake::Task.task_defined?('spinach')
desc "GITLAB | Run spinach"
task :spinach do
tags = if ENV['SEMAPHORE']
'~@tricky,~@wip'
else
'~@wip'
end
cmds = [
%W(rake gitlab:setup),
%W(spinach),
%W(spinach --tags #{tags}),
]
run_commands(cmds)
end
......
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