##// END OF EJS Templates
tests: blacklist some more entries in module import checks
Augie Fackler -
r33915:a0aeb096 default
parent child Browse files
Show More
@@ -1,39 +1,42 b''
1 1 #require test-repo
2 2
3 3 $ . "$TESTDIR/helpers-testrepo.sh"
4 4 $ import_checker="$TESTDIR"/../contrib/import-checker.py
5 5
6 6 $ cd "$TESTDIR"/..
7 7
8 8 There are a handful of cases here that require renaming a module so it
9 9 doesn't overlap with a stdlib module name. There are also some cycles
10 10 here that we should still endeavor to fix, and some cycles will be
11 11 hidden by deduplication algorithm in the cycle detector, so fixing
12 12 these may expose other cycles.
13 13
14 14 Known-bad files are excluded by -X as some of them would produce unstable
15 15 outputs, which should be fixed later.
16 16
17 17 $ testrepohg locate 'set:**.py or grep(r"^#!.*?python")' \
18 18 > 'tests/**.t' \
19 > -X hgweb.cgi \
20 > -X setup.py \
19 21 > -X contrib/debugshell.py \
22 > -X contrib/hgweb.fcgi \
20 23 > -X contrib/python-zstandard/ \
21 24 > -X contrib/win32/hgwebdir_wsgi.py \
22 25 > -X doc/gendoc.py \
23 26 > -X doc/hgmanpage.py \
24 27 > -X i18n/posplit \
25 28 > -X tests/test-hgweb-auth.py \
26 29 > -X tests/hypothesishelpers.py \
27 30 > -X tests/test-lock.py \
28 31 > -X tests/test-verify-repo-operations.py \
29 32 > -X tests/test-hook.t \
30 33 > -X tests/test-import.t \
31 34 > -X tests/test-imports-checker.t \
32 35 > -X tests/test-commit-interactive.t \
33 36 > -X tests/test-contrib-check-code.t \
34 37 > -X tests/test-extension.t \
35 38 > -X tests/test-hghave.t \
36 39 > -X tests/test-hgweb-no-path-info.t \
37 40 > -X tests/test-hgweb-no-request-uri.t \
38 41 > -X tests/test-hgweb-non-interactive.t \
39 42 > | sed 's-\\-/-g' | $PYTHON "$import_checker" -
General Comments 0
You need to be logged in to leave comments. Login now