summaryrefslogtreecommitdiff
path: root/dev-python/python-statemachine
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/python-statemachine')
-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=""'
+
}