Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
23c31a0b
Commit
23c31a0b
authored
Jan 29, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Skip tricky test for semaphore
parent
b7cf72f6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
features/project/source/browse_files.feature
features/project/source/browse_files.feature
+1
-1
lib/tasks/spinach.rake
lib/tasks/spinach.rake
+7
-1
No files found.
features/project/source/browse_files.feature
View file @
23c31a0b
...
...
@@ -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
...
...
lib/tasks/spinach.rake
View file @
23c31a0b
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment