Show More
@@ -1,41 +1,39 | |||
|
1 | #require test-repo | |
|
2 | ||
|
1 | 3 | This code uses the ast module, which was new in 2.6, so we'll skip |
|
2 | 4 | this test on anything earlier. |
|
3 | 5 | $ $PYTHON -c 'import sys ; assert sys.version_info >= (2, 6)' || exit 80 |
|
4 | 6 | |
|
5 | 7 | $ import_checker="$TESTDIR"/../contrib/import-checker.py |
|
8 | ||
|
6 | 9 | Run the doctests from the import checker, and make sure |
|
7 | 10 | it's working correctly. |
|
8 | 11 | $ TERM=dumb |
|
9 | 12 | $ export TERM |
|
10 | 13 | $ python -m doctest $import_checker |
|
11 | 14 | |
|
12 | 15 | $ cd "$TESTDIR"/.. |
|
13 | $ if hg identify -q > /dev/null 2>&1; then : | |
|
14 | > else | |
|
15 | > echo "skipped: not a Mercurial working dir" >&2 | |
|
16 | > exit 80 | |
|
17 | > fi | |
|
18 | 16 | |
|
19 | 17 | There are a handful of cases here that require renaming a module so it |
|
20 | 18 | doesn't overlap with a stdlib module name. There are also some cycles |
|
21 | 19 | here that we should still endeavor to fix, and some cycles will be |
|
22 | 20 | hidden by deduplication algorithm in the cycle detector, so fixing |
|
23 | 21 | these may expose other cycles. |
|
24 | 22 | |
|
25 | 23 | $ hg locate 'mercurial/**.py' | sed 's-\\-/-g' | xargs python "$import_checker" |
|
26 | 24 | mercurial/dispatch.py mixed imports |
|
27 | 25 | stdlib: commands |
|
28 | 26 | relative: error, extensions, fancyopts, hg, hook, util |
|
29 | 27 | mercurial/fileset.py mixed imports |
|
30 | 28 | stdlib: parser |
|
31 | 29 | relative: error, merge, util |
|
32 | 30 | mercurial/revset.py mixed imports |
|
33 | 31 | stdlib: parser |
|
34 | 32 | relative: discovery, error, hbisect, phases, util |
|
35 | 33 | mercurial/templater.py mixed imports |
|
36 | 34 | stdlib: parser |
|
37 | 35 | relative: config, error, templatefilters, templatekw, util |
|
38 | 36 | mercurial/ui.py mixed imports |
|
39 | 37 | stdlib: formatter |
|
40 | 38 | relative: config, error, scmutil, util |
|
41 | 39 | Import cycle: mercurial.cmdutil -> mercurial.context -> mercurial.subrepo -> mercurial.cmdutil -> mercurial.cmdutil |
General Comments 0
You need to be logged in to leave comments.
Login now