downstream: bonsai pyproject: move pytest deps to requirements-dev.txt

This commit is contained in:
Andrej730
2026-07-14 18:41:29 +05:00
parent 79aa36b751
commit d5f7f616f0
3 changed files with 4 additions and 8 deletions
+1 -2
View File
@@ -179,8 +179,7 @@ jobs:
blender --online-mode --command extension install --enable --sync sun_position blender --online-mode --command extension install --enable --sync sun_position
cd IfcOpenShell/src/bonsai cd IfcOpenShell/src/bonsai
pip install pytest-blender pip install -r requirements-dev.txt
pip install pytest-bdd
blender --background --python scripts/setup_pytest.py blender --background --python scripts/setup_pytest.py
blender --python-expr "import bonsai; print(bonsai.bbim_semver); import ifcopenshell; print(ifcopenshell.version)" --background blender --python-expr "import bonsai; print(bonsai.bbim_semver); import ifcopenshell; print(ifcopenshell.version)" --background
make test make test
-6
View File
@@ -18,12 +18,6 @@ dependencies = [
"ifcopenshell", "ifcopenshell",
] ]
[project.optional-dependencies]
dev = [
"pytest-blender",
"pytest-bdd",
]
[project.urls] [project.urls]
Homepage = "http://bonsaibim.org" Homepage = "http://bonsaibim.org"
Documentation = "https://docs.bonsaibim.org" Documentation = "https://docs.bonsaibim.org"
+3
View File
@@ -0,0 +1,3 @@
pytest
pytest-blender
pytest-bdd