test-check-py3-compat.t
52 lines
| 2.8 KiB
| text/troff
|
Tads3Lexer
/ tests / test-check-py3-compat.t
Gregory Szorc
|
r27279 | #require test-repo | ||
timeless
|
r29219 | $ . "$TESTDIR/helpers-testrepo.sh" | ||
Gregory Szorc
|
r27279 | $ cd "$TESTDIR"/.. | ||
Martijn Pieters
|
r40299 | #if no-py3 | ||
Yuya Nishihara
|
r33530 | $ testrepohg files 'set:(**.py)' \ | ||
Gregory Szorc
|
r42191 | > -X contrib/automation/ \ | ||
Gregory Szorc
|
r42073 | > -X contrib/packaging/hgpackaging/ \ | ||
Gregory Szorc
|
r42019 | > -X contrib/packaging/inno/ \ | ||
Gregory Szorc
|
r42087 | > -X contrib/packaging/wix/ \ | ||
Yuya Nishihara
|
r33530 | > -X hgdemandimport/demandimportpy2.py \ | ||
Pulkit Goyal
|
r37145 | > -X mercurial/thirdparty/cbor \ | ||
Matt Harbison
|
r39743 | > | sed 's|\\|/|g' | xargs "$PYTHON" contrib/check-py3-compat.py | ||
Gregory Szorc
|
r30435 | contrib/python-zstandard/setup.py not using absolute_import | ||
contrib/python-zstandard/setup_zstd.py not using absolute_import | ||||
contrib/python-zstandard/tests/common.py not using absolute_import | ||||
Gregory Szorc
|
r31796 | contrib/python-zstandard/tests/test_buffer_util.py not using absolute_import | ||
Gregory Szorc
|
r30435 | contrib/python-zstandard/tests/test_compressor.py not using absolute_import | ||
Gregory Szorc
|
r31796 | contrib/python-zstandard/tests/test_compressor_fuzzing.py not using absolute_import | ||
Gregory Szorc
|
r30435 | contrib/python-zstandard/tests/test_data_structures.py not using absolute_import | ||
Gregory Szorc
|
r31796 | contrib/python-zstandard/tests/test_data_structures_fuzzing.py not using absolute_import | ||
Gregory Szorc
|
r30435 | contrib/python-zstandard/tests/test_decompressor.py not using absolute_import | ||
Gregory Szorc
|
r31796 | contrib/python-zstandard/tests/test_decompressor_fuzzing.py not using absolute_import | ||
Gregory Szorc
|
r30435 | contrib/python-zstandard/tests/test_estimate_sizes.py not using absolute_import | ||
contrib/python-zstandard/tests/test_module_attributes.py not using absolute_import | ||||
contrib/python-zstandard/tests/test_train_dictionary.py not using absolute_import | ||||
Gregory Szorc
|
r27279 | setup.py not using absolute_import | ||
Yuya Nishihara
|
r39438 | #endif | ||
Gregory Szorc
|
r28583 | |||
Martijn Pieters
|
r40299 | #if py3 | ||
Yuya Nishihara
|
r33199 | $ testrepohg files 'set:(**.py) - grep(pygments)' \ | ||
Yuya Nishihara
|
r33530 | > -X hgdemandimport/demandimportpy2.py \ | ||
Yuya Nishihara
|
r33199 | > -X hgext/fsmonitor/pywatchman \ | ||
Yuya Nishihara
|
r39421 | > -X mercurial/cffi \ | ||
> -X mercurial/thirdparty \ | ||||
Matt Harbison
|
r39743 | > | sed 's|\\|/|g' | xargs "$PYTHON" contrib/check-py3-compat.py \ | ||
Yuya Nishihara
|
r29810 | > | sed 's/[0-9][0-9]*)$/*)/' | ||
Yuya Nishihara
|
r39422 | hgext/convert/transport.py: error importing: <*Error> No module named 'svn.client' (error at transport.py:*) (glob) (?) | ||
hgext/infinitepush/sqlindexapi.py: error importing: <*Error> No module named 'mysql' (error at sqlindexapi.py:*) (glob) (?) | ||||
mercurial/scmwindows.py: error importing: <ValueError> _type_ 'v' not supported (error at win32.py:*) (no-windows !) | ||||
mercurial/win32.py: error importing: <ValueError> _type_ 'v' not supported (error at win32.py:*) (no-windows !) | ||||
mercurial/windows.py: error importing: <ModuleNotFoundError> No module named 'msvcrt' (error at windows.py:*) (no-windows !) | ||||
Matt Harbison
|
r39855 | mercurial/posix.py: error importing: <ModuleNotFoundError> No module named 'fcntl' (error at posix.py:*) (windows !) | ||
mercurial/scmposix.py: error importing: <ModuleNotFoundError> No module named 'fcntl' (error at scmposix.py:*) (windows !) | ||||
Gregory Szorc
|
r28583 | #endif | ||
Augie Fackler
|
r29886 | |||
Martijn Pieters
|
r40299 | #if py3 pygments | ||
Yuya Nishihara
|
r33199 | $ testrepohg files 'set:(**.py) and grep(pygments)' | sed 's|\\|/|g' \ | ||
Matt Harbison
|
r39743 | > | xargs "$PYTHON" contrib/check-py3-compat.py \ | ||
Augie Fackler
|
r29886 | > | sed 's/[0-9][0-9]*)$/*)/' | ||
#endif | ||||