test-check-py3-compat.t
47 lines
| 2.4 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"/.. | ||
Yuya Nishihara
|
r39438 | #if no-py3k | ||
Yuya Nishihara
|
r33530 | $ testrepohg files 'set:(**.py)' \ | ||
> -X hgdemandimport/demandimportpy2.py \ | ||||
Pulkit Goyal
|
r37145 | > -X mercurial/thirdparty/cbor \ | ||
Yuya Nishihara
|
r33530 | > | 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 | |||
Yuya Nishihara
|
r39439 | #if py3k | ||
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 \ | ||||
Yuya Nishihara
|
r39439 | > | 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 !) | ||||
Gregory Szorc
|
r28583 | |||
#endif | ||||
Augie Fackler
|
r29886 | |||
Yuya Nishihara
|
r39439 | #if py3k pygments | ||
Yuya Nishihara
|
r33199 | $ testrepohg files 'set:(**.py) and grep(pygments)' | sed 's|\\|/|g' \ | ||
Yuya Nishihara
|
r39439 | > | xargs $PYTHON contrib/check-py3-compat.py \ | ||
Augie Fackler
|
r29886 | > | sed 's/[0-9][0-9]*)$/*)/' | ||
#endif | ||||