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