PATH: //opt/cloudlinux/venv/lib/python3.11/site-packages/setuptools/tests
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __init__.py
↓
X
📁 __pycache__/
X
📁 compat/
X
📁 config/
X
📄 contexts.py
↓
X
📄 environment.py
↓
X
📄 fixtures.py
↓
X
📁 indexes/
X
📁 integration/
X
📄 mod_with_constant.py
↓
X
📄 namespaces.py
↓
X
📄 script-with-bom.py
↓
X
📄 server.py
↓
X
📄 test_archive_util.py
↓
X
📄 test_bdist_deprecations.py
↓
X
📄 test_bdist_egg.py
↓
X
📄 test_bdist_wheel.py
↓
X
📄 test_build.py
↓
X
📄 test_build_clib.py
↓
X
📄 test_build_ext.py
↓
X
📄 test_build_meta.py
↓
X
📄 test_build_py.py
↓
X
📄 test_config_discovery.py
↓
X
📄 test_core_metadata.py
↓
X
📄 test_depends.py
↓
X
📄 test_develop.py
↓
X
📄 test_dist.py
↓
X
📄 test_dist_info.py
↓
X
📄 test_distutils_adoption.py
↓
X
📄 test_easy_install.py
↓
X
📄 test_editable_install.py
↓
X
📄 test_egg_info.py
↓
X
📄 test_extern.py
↓
X
📄 test_find_packages.py
↓
X
📄 test_find_py_modules.py
↓
X
📄 test_glob.py
↓
X
📄 test_install_scripts.py
↓
X
📄 test_logging.py
↓
X
📄 test_manifest.py
↓
X
📄 test_namespaces.py
↓
X
📄 test_packageindex.py
↓
X
📄 test_sandbox.py
↓
X
📄 test_sdist.py
↓
X
📄 test_setopt.py
↓
X
📄 test_setuptools.py
↓
X
📄 test_shutil_wrapper.py
↓
X
📄 test_unicode_utils.py
↓
X
📄 test_virtualenv.py
↓
X
📄 test_warnings.py
↓
X
📄 test_wheel.py
↓
X
📄 test_windows_wrappers.py
↓
X
📄 text.py
↓
X
📄 textwrap.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: test_warnings.py
from inspect import cleandoc import pytest from setuptools.warnings import SetuptoolsDeprecationWarning, SetuptoolsWarning _EXAMPLES = { "default": dict( args=("Hello {x}", "\n\t{target} {v:.1f}"), kwargs={"x": 5, "v": 3, "target": "World"}, expected=""" Hello 5 !! ******************************************************************************** World 3.0 ******************************************************************************** !! """, ), "futue_due_date": dict( args=("Summary", "Lorem ipsum"), kwargs={"due_date": (9999, 11, 22)}, expected=""" Summary !! ******************************************************************************** Lorem ipsum By 9999-Nov-22, you need to update your project and remove deprecated calls or your builds will no longer be supported. ******************************************************************************** !! """, ), "past_due_date_with_docs": dict( args=("Summary", "Lorem ipsum"), kwargs={"due_date": (2000, 11, 22), "see_docs": "some_page.html"}, expected=""" Summary !! ******************************************************************************** Lorem ipsum This deprecation is overdue, please update your project and remove deprecated calls to avoid build errors in the future. See https://setuptools.pypa.io/en/latest/some_page.html for details. ******************************************************************************** !! """, ), } @pytest.mark.parametrize("example_name", _EXAMPLES.keys()) def test_formatting(monkeypatch, example_name): """ It should automatically handle indentation, interpolation and things like due date. """ args = _EXAMPLES[example_name]["args"] kwargs = _EXAMPLES[example_name]["kwargs"] expected = _EXAMPLES[example_name]["expected"] monkeypatch.setenv("SETUPTOOLS_ENFORCE_DEPRECATION", "false") with pytest.warns(SetuptoolsWarning) as warn_info: SetuptoolsWarning.emit(*args, **kwargs) assert _get_message(warn_info) == cleandoc(expected) def test_due_date_enforcement(monkeypatch): class _MyDeprecation(SetuptoolsDeprecationWarning): _SUMMARY = "Summary" _DETAILS = "Lorem ipsum" _DUE_DATE = (2000, 11, 22) _SEE_DOCS = "some_page.html" monkeypatch.setenv("SETUPTOOLS_ENFORCE_DEPRECATION", "true") with pytest.raises(SetuptoolsDeprecationWarning) as exc_info: _MyDeprecation.emit() expected = """ Summary !! ******************************************************************************** Lorem ipsum This deprecation is overdue, please update your project and remove deprecated calls to avoid build errors in the future. See https://setuptools.pypa.io/en/latest/some_page.html for details. ******************************************************************************** !! """ assert str(exc_info.value) == cleandoc(expected) def _get_message(warn_info): return next(warn.message.args[0] for warn in warn_info)
SIMPAN PERUBAHAN