Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
f3c6f5b9
Commit
f3c6f5b9
authored
Feb 08, 2018
by
Mathieu Giraud
Browse files
should-status.py: ignore TODO/SKIP lines
Thanks to
@mikael-s
.
parent
7e9f9ca0
Pipeline
#16540
passed with stages
in 46 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
algo/tests/should-status.py
View file @
f3c6f5b9
...
...
@@ -18,7 +18,7 @@ failed.write('#!/bin/sh\n\n')
for
tap
in
glob
.
glob
(
'should-get-tests/*.tap'
):
ok
=
True
for
l
in
open
(
tap
):
if
'not ok'
in
l
:
if
'not ok'
in
l
and
not
'SKIP'
in
l
and
not
'TODO'
in
l
:
ok
=
False
break
...
...
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