Skip tricky test for semaphore
This commit is contained in:
parent
b7cf72f6ea
commit
23c31a0b12
2 changed files with 8 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue