summaryrefslogtreecommitdiff
path: root/dev-python/astor
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-05-14 18:59:50 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-05-14 18:59:50 +0000
commit00278f6cc9e8280380a376f72ec209c3efc960a4 (patch)
treefb64e4ad90415827deb50f7ddc78db6898c1a100 /dev-python/astor
parentf8809af2354fe27fa3c1df0e9716fa59d12dca19 (diff)
downloadbaldeagleos-repo-00278f6cc9e8280380a376f72ec209c3efc960a4.tar.gz
baldeagleos-repo-00278f6cc9e8280380a376f72ec209c3efc960a4.tar.xz
baldeagleos-repo-00278f6cc9e8280380a376f72ec209c3efc960a4.zip
Adding metadata
Diffstat (limited to 'dev-python/astor')
-rw-r--r--dev-python/astor/astor-0.8.1-r1.ebuild30
1 files changed, 27 insertions, 3 deletions
diff --git a/dev-python/astor/astor-0.8.1-r1.ebuild b/dev-python/astor/astor-0.8.1-r1.ebuild
index 78b54a9e1f6d..e43a44bdedb7 100644
--- a/dev-python/astor/astor-0.8.1-r1.ebuild
+++ b/dev-python/astor/astor-0.8.1-r1.ebuild
@@ -24,6 +24,30 @@ PATCHES=(
distutils_enable_tests pytest
-EPYTEST_IGNORE=(
- tests/test_rtrip.py
-)
+python_test() {
+ local EPYTEST_IGNORE=(
+ tests/test_rtrip.py
+ )
+ local EPYTEST_DESELECT=()
+
+ case ${EPYTHON} in
+ python3.14)
+ EPYTEST_DESELECT+=(
+ # TODO
+ tests/test_code_gen.py::CodegenTestCase::test_complex
+ tests/test_code_gen.py::CodegenTestCase::test_deprecated_constant_nodes
+ tests/test_code_gen.py::CodegenTestCase::test_deprecated_name_constants
+ tests/test_code_gen.py::CodegenTestCase::test_fstring_debugging
+ tests/test_code_gen.py::CodegenTestCase::test_fstring_escaped_braces
+ tests/test_code_gen.py::CodegenTestCase::test_fstring_trailing_newline
+ tests/test_code_gen.py::CodegenTestCase::test_fstrings
+ tests/test_code_gen.py::CodegenTestCase::test_huge_int
+ tests/test_code_gen.py::CodegenTestCase::test_inf
+ tests/test_code_gen.py::CodegenTestCase::test_nan
+ )
+ ;;
+ esac
+
+ local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+ epytest
+}