summaryrefslogtreecommitdiff
path: root/dev-python/deepdiff/deepdiff-7.0.1.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/deepdiff/deepdiff-7.0.1.ebuild')
-rw-r--r--dev-python/deepdiff/deepdiff-7.0.1.ebuild16
1 files changed, 16 insertions, 0 deletions
diff --git a/dev-python/deepdiff/deepdiff-7.0.1.ebuild b/dev-python/deepdiff/deepdiff-7.0.1.ebuild
index 50f222a66f36..97a1dd4f47ae 100644
--- a/dev-python/deepdiff/deepdiff-7.0.1.ebuild
+++ b/dev-python/deepdiff/deepdiff-7.0.1.ebuild
@@ -37,3 +37,19 @@ DEPEND="
"
distutils_enable_tests pytest
+
+python_test() {
+ local EPYTEST_DESELECT=()
+
+ case ${EPYTHON} in
+ python3.13)
+ EPYTEST_DESELECT+=(
+ # changed exception message
+ "tests/test_command.py::TestCommands::test_diff_command[t1_corrupt.json-t2.json-Expecting property name enclosed in double quotes-1]"
+ )
+ ;;
+ esac
+
+ local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+ epytest
+}