Skip to content
Snippets Groups Projects
Commit e033a7d4 authored by Simon Heimberg's avatar Simon Heimberg
Browse files

tests: do not skip code-checking on some whole files

In filterpyflakes the term no-check-code was probably by accident.
In the test the intention was not to skip the entire file but only one
line. But any skipping seems to be unnecessary since a longer time.
parent ee07f9d1
Branches
Tags
No related merge requests found
......@@ -42,7 +42,7 @@
f = open(os.path.join(os.path.dirname(os.path.dirname(__file__)), fn))
data = f.read()
f.close()
if 'no-check-code' in data:
if 'no-' 'check-code' in data:
continue
lines.append((msgtype, line))
......
$ remove() {
> hg rm $@
> echo "exit code: $?" # no-check-code
> echo "exit code: $?"
> hg st
> # do not use ls -R, which recurses in .hg subdirs on Mac OS X 10.5
> find . -name .hg -prune -o -type f -print | sort
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment