Skip to content
Snippets Groups Projects
Commit 32bd9926 authored by Benedikt's avatar Benedikt
Browse files

next try for coverage

parent 94e533bf
No related branches found
No related tags found
1 merge request!2Updating devel state
Pipeline #54325 failed
...@@ -22,10 +22,15 @@ classifiers=[ ...@@ -22,10 +22,15 @@ classifiers=[
[project.optional-dependencies] [project.optional-dependencies]
testing = [ testing = [
"pytest>=8.0", # For Python 3.7, use pytest version below 8 which supports Python 3.7
"requests>=2.0", 'pytest>=7,<8; python_version < "3.8"',
# For Python 3.9 and up, use pytest-cov>=6.0 # For Python 3.8 and above, use pytest 8 or later
'pytest-cov>=6.0; python_version >= "3.9"', 'pytest>=8; python_version >= "3.8"',
# For older versions, use an older version of pytest-cov or omit it: # If you want to include coverage, either:
'pytest-cov>=5,<6; python_version < "3.9"' # Option A: install coverage on Python 3.7/3.8 using an older version
'pytest-cov>=5,<6; python_version < "3.8"',
# For Python 3.8 and above, use pytest-cov 6 or later
'pytest-cov>=6; python_version >= "3.8"',
# And include requests for tests
'requests>=2.0'
] ]
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment