summaryrefslogtreecommitdiff
path: root/dev-python/subprocess-tee
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-09-21 18:52:37 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-09-21 18:52:37 +0000
commite39b2a9c1304e235c41cc68798aab341eb850f1b (patch)
tree207b4751aec38e735c52a5c8c944ebf8a3c93879 /dev-python/subprocess-tee
parent2ce87fedd92512ece9d03a4c664d0753faf9e088 (diff)
downloadbaldeagleos-repo-e39b2a9c1304e235c41cc68798aab341eb850f1b.tar.gz
baldeagleos-repo-e39b2a9c1304e235c41cc68798aab341eb850f1b.tar.xz
baldeagleos-repo-e39b2a9c1304e235c41cc68798aab341eb850f1b.zip
Adding metadata
Diffstat (limited to 'dev-python/subprocess-tee')
-rw-r--r--dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild10
1 files changed, 9 insertions, 1 deletions
diff --git a/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
index 8ea46fd421fd..8b31cd29800c 100644
--- a/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
+++ b/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
@@ -4,6 +4,8 @@
EAPI=8
PYTHON_COMPAT=( python3_{7,8,9,10} )
+DISTUTILS_USE_PEP517=setuptools
+
inherit distutils-r1
DESCRIPTION="subprocess.run replacement with tee(1)-like output"
@@ -24,11 +26,17 @@ BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]
test-full? ( app-admin/ansible-molecule )
)"
+# With the exception of a handful of extra lines this is literally the same test suite
+# as test_console.py from dev-python/enrich, which is currently known to fail (Bug #865497).
+EPYTEST_DESELECT=(
+ src/subprocess_tee/test/test_rich.py
+)
+
distutils_enable_tests pytest
python_test() {
if ! use test-full; then
- local -x EPYTEST_DESELECT=( "src/${PN/-/_}/test/test_func.py::test_molecule" )
+ EPYTEST_DESELECT+=( "src/${PN/-/_}/test/test_func.py::test_molecule" )
fi
distutils-r1_python_test
}