packages used for testing moved to tests section of pyprojects.tom (#3094)

This commit is contained in:
Jonathan Shimwell 2024-07-24 13:27:39 +01:00 committed by GitHub
parent e5cc925db3
commit 0ad003307a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 7 deletions

View file

@ -47,6 +47,7 @@ docs = [
"sphinx-rtd-theme==1.0.0"
]
test = ["packaging", "pytest", "pytest-cov", "colorama", "openpyxl"]
ci = ["cpp-coveralls", "coveralls"]
vtk = ["vtk"]
[project.urls]

View file

@ -48,10 +48,4 @@ fi
python tools/ci/gha-install.py
# Install Python API in editable mode
pip install -e .[test,vtk]
# For coverage testing of the C++ source files
pip install cpp-coveralls
# For coverage testing of the Python source files
pip install coveralls
pip install -e .[test,vtk,ci]