summaryrefslogtreecommitdiff
path: root/dev-python/python-statemachine/python-statemachine-2.3.3.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-07-11 17:45:15 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-07-11 17:45:15 +0000
commitaa075903243459bd70da1495228adba962160b3d (patch)
tree9641eef55c6ee59ff2b2aed098353359210521d6 /dev-python/python-statemachine/python-statemachine-2.3.3.ebuild
parent346d082088860d59afadaf985dfd3318ae370d3a (diff)
downloadbaldeagleos-repo-aa075903243459bd70da1495228adba962160b3d.tar.gz
baldeagleos-repo-aa075903243459bd70da1495228adba962160b3d.tar.xz
baldeagleos-repo-aa075903243459bd70da1495228adba962160b3d.zip
Adding metadata
Diffstat (limited to 'dev-python/python-statemachine/python-statemachine-2.3.3.ebuild')
-rw-r--r--dev-python/python-statemachine/python-statemachine-2.3.3.ebuild15
1 files changed, 14 insertions, 1 deletions
diff --git a/dev-python/python-statemachine/python-statemachine-2.3.3.ebuild b/dev-python/python-statemachine/python-statemachine-2.3.3.ebuild
index a47ca73f883a..b4cf90f7ae8c 100644
--- a/dev-python/python-statemachine/python-statemachine-2.3.3.ebuild
+++ b/dev-python/python-statemachine/python-statemachine-2.3.3.ebuild
@@ -24,12 +24,25 @@ RDEPEND="dev-python/pydot[${PYTHON_USEDEP}]"
BDEPEND="
${RDEPEND}
test? (
+ dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-mock[${PYTHON_USEDEP}]
+ dev-python/pytest-django[${PYTHON_USEDEP}]
+ dev-python/django[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
+EPYTEST_DESELECT=(
+ tests/test_mixins.py::test_mixin_should_instantiate_a_machine
+)
+
+EPYTEST_IGNORE=(
+ tests/test_profiling.py
+ tests/django_project/workflow/tests.py
+)
+
python_test() {
- epytest -o 'addopts=""' --ignore=tests/test_profiling.py
+ epytest -o 'addopts=""'
+
}