##// END OF EJS Templates
pytype: add coverage for parts of hgext...
Matt Harbison -
r50763:a8893ec9 default
parent child Browse files
Show More
@@ -12,6 +12,36 b' cd `hg root`'
12 # endeavor to empty this list out over time, as some of these are
12 # endeavor to empty this list out over time, as some of these are
13 # probably hiding real problems.
13 # probably hiding real problems.
14 #
14 #
15 # hgext/absorb.py # [attribute-error]
16 # hgext/bugzilla.py # [pyi-error], [attribute-error]
17 # hgext/convert/bzr.py # [attribute-error]
18 # hgext/convert/cvs.py # [attribute-error], [wrong-arg-types]
19 # hgext/convert/cvsps.py # [attribute-error]
20 # hgext/convert/p4.py # [wrong-arg-types] (__file: mercurial.utils.procutil._pfile -> IO)
21 # hgext/convert/subversion.py # [attribute-error], [name-error], [pyi-error]
22 # hgext/fastannotate/context.py # no linelog.copyfrom()
23 # hgext/fastannotate/formatter.py # [unsupported-operands]
24 # hgext/fsmonitor/__init__.py # [name-error]
25 # hgext/git/__init__.py # [attribute-error]
26 # hgext/githelp.py # [attribute-error] [wrong-arg-types]
27 # hgext/hgk.py # [attribute-error]
28 # hgext/histedit.py # [attribute-error], [wrong-arg-types]
29 # hgext/infinitepush # using bytes for str literal; scheduled for removal
30 # hgext/keyword.py # [attribute-error]
31 # hgext/largefiles/storefactory.py # [attribute-error]
32 # hgext/lfs/__init__.py # [attribute-error]
33 # hgext/narrow/narrowbundle2.py # [attribute-error]
34 # hgext/narrow/narrowcommands.py # [attribute-error], [name-error]
35 # hgext/rebase.py # [attribute-error]
36 # hgext/remotefilelog/basepack.py # [attribute-error], [wrong-arg-count]
37 # hgext/remotefilelog/basestore.py # [attribute-error]
38 # hgext/remotefilelog/contentstore.py # [missing-parameter], [wrong-keyword-args], [attribute-error]
39 # hgext/remotefilelog/fileserverclient.py # [attribute-error]
40 # hgext/remotefilelog/shallowbundle.py # [attribute-error]
41 # hgext/remotefilelog/remotefilectx.py # [module-attr] (This is an actual bug)
42 # hgext/sqlitestore.py # [attribute-error]
43 # hgext/zeroconf/__init__.py # bytes vs str; tests fail on macOS
44 #
15 # mercurial/bundlerepo.py # no vfs and ui attrs on bundlerepo
45 # mercurial/bundlerepo.py # no vfs and ui attrs on bundlerepo
16 # mercurial/context.py # many [attribute-error]
46 # mercurial/context.py # many [attribute-error]
17 # mercurial/crecord.py # tons of [attribute-error], [module-attr]
47 # mercurial/crecord.py # tons of [attribute-error], [module-attr]
@@ -42,7 +72,37 b' cd `hg root`'
42
72
43 # TODO: include hgext and hgext3rd
73 # TODO: include hgext and hgext3rd
44
74
45 pytype -V 3.7 --keep-going --jobs auto doc/check-seclevel.py hgdemandimport mercurial \
75 pytype -V 3.7 --keep-going --jobs auto \
76 doc/check-seclevel.py hgdemandimport hgext mercurial \
77 -x hgext/absorb.py \
78 -x hgext/bugzilla.py \
79 -x hgext/convert/bzr.py \
80 -x hgext/convert/cvs.py \
81 -x hgext/convert/cvsps.py \
82 -x hgext/convert/p4.py \
83 -x hgext/convert/subversion.py \
84 -x hgext/fastannotate/context.py \
85 -x hgext/fastannotate/formatter.py \
86 -x hgext/fsmonitor/__init__.py \
87 -x hgext/git/__init__.py \
88 -x hgext/githelp.py \
89 -x hgext/hgk.py \
90 -x hgext/histedit.py \
91 -x hgext/infinitepush \
92 -x hgext/keyword.py \
93 -x hgext/largefiles/storefactory.py \
94 -x hgext/lfs/__init__.py \
95 -x hgext/narrow/narrowbundle2.py \
96 -x hgext/narrow/narrowcommands.py \
97 -x hgext/rebase.py \
98 -x hgext/remotefilelog/basepack.py \
99 -x hgext/remotefilelog/basestore.py \
100 -x hgext/remotefilelog/contentstore.py \
101 -x hgext/remotefilelog/fileserverclient.py \
102 -x hgext/remotefilelog/remotefilectx.py \
103 -x hgext/remotefilelog/shallowbundle.py \
104 -x hgext/sqlitestore.py \
105 -x hgext/zeroconf/__init__.py \
46 -x mercurial/bundlerepo.py \
106 -x mercurial/bundlerepo.py \
47 -x mercurial/context.py \
107 -x mercurial/context.py \
48 -x mercurial/crecord.py \
108 -x mercurial/crecord.py \
General Comments 0
You need to be logged in to leave comments. Login now