perl/Module-Build-Tiny: update to 0.051 for Perl 5.36 and 5.38
[oi-userland.git] / components / python / libcst / python-integrate-project.conf
blob5450bda0ec170e23aed967b5717a6f8172e2b8b8
2 # This file and its contents are supplied under the terms of the
3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 # You may only use this file in accordance with the terms of version
5 # 1.0 of the CDDL.
7 # A full copy of the text of the CDDL should have accompanied this
8 # source.  A copy of the CDDL is also available via the Internet at
9 # http://www.illumos.org/license/CDDL.
13 # Copyright 2023 Marcel Telka
16 %patch% 01-no-pyre-check.patch
18 %include-3%
19 # https://www.illumos.org/issues/15767
20 LD_Z_IGNORE=
23 # Tests are run from build directory that contains cloned copy of sdist.  We
24 # try to ask Python to find tested modules in the proto area (the PYTHONPATH is
25 # set accordingly), but Python (< 3.11) always adds the current directory to
26 # sys.path and there is no known (simple) way how to avoid that.  Except -I,
27 # but that would cause Python to ignore PYTHONPATH too so we would not have
28 # access to the proto area either.  The -P option together with PYTHONSAFEPATH
29 # environment variable were added to Python 3.11 only so we cannot use them yet
30 # for all Python versions we support.
32 # Since sdist for this project contains the main module in the top-level
33 # directory we cannot force Python to skip it.  But, unfortunately, this module
34 # does not contain built dynamic libraries, so Python cannot find them while
35 # testing.
37 # To workaround this we rename the main module in the build directory during
38 # testing so Python will need to defer to PYTHONPATH.
40 COMPONENT_PRE_TEST_ACTION +=    $(MV) $(@D)/libcst $(@D)/libcst-RENAMED ;
41 COMPONENT_POST_TEST_ACTION +=   $(MV) $(@D)/libcst-RENAMED $(@D)/libcst ;
43 # Tests in tests/test_fuzz.py require hypothesmith.  We do not have
44 # hypothesmith package (yet) so we need to disable those tests.
45 PYTEST_ADDOPTS += --ignore libcst-RENAMED/tests/test_fuzz.py
47 # https://github.com/Instagram/LibCST/issues/818
48 PYTEST_ADDOPTS += --ignore libcst-RENAMED/codegen/tests/test_codegen_clean.py
50 # https://github.com/Instagram/LibCST/issues/1220
51 PYTEST_ADDOPTS += --deselect libcst-RENAMED/codemod/tests/test_codemod_cli.py::TestCodemodCLI::test_codemod_formatter_error_input
53 # Remove extra -RENAMED from test report
54 COMPONENT_TEST_TRANSFORMS += "-e 's/\(libcst\)-RENAMED/\1/g'"