diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-02-07 09:16:17 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-02-07 10:26:39 +0100 |
commit | 48678872e9e3ed119887e433366a4fd1ea64a9f7 (patch) | |
tree | 2030f3c1f1fec40b5440cfea3da33128c3af70ba /dev-python/cssutils | |
parent | dev-python/jaraco-logging: Switch to PyPI sdist (diff) | |
download | gentoo-48678872e9e3ed119887e433366a4fd1ea64a9f7.tar.gz gentoo-48678872e9e3ed119887e433366a4fd1ea64a9f7.tar.bz2 gentoo-48678872e9e3ed119887e433366a4fd1ea64a9f7.zip |
dev-python/cssutils: Ignore problematic test
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/cssutils')
-rw-r--r-- | dev-python/cssutils/cssutils-2.6.0.ebuild | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/dev-python/cssutils/cssutils-2.6.0.ebuild b/dev-python/cssutils/cssutils-2.6.0.ebuild index e70142e69b40..aa70a9c26987 100644 --- a/dev-python/cssutils/cssutils-2.6.0.ebuild +++ b/dev-python/cssutils/cssutils-2.6.0.ebuild @@ -33,9 +33,17 @@ BDEPEND=" distutils_enable_tests pytest -EPYTEST_DESELECT=( - # network - encutils/__init__.py::encutils - cssutils/tests/test_parse.py::TestCSSParser::test_parseUrl - examples/website.py::website.logging -) +python_test() { + local EPYTEST_DESELECT=( + # network + encutils/__init__.py::encutils + cssutils/tests/test_parse.py::TestCSSParser::test_parseUrl + examples/website.py::website.logging + ) + local EPYTEST_IGNORE=( + # path mismatch with "parse" package + examples/parse.py + ) + + epytest +} |