We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18feba2 commit 8abc070Copy full SHA for 8abc070
1 file changed
pyproject.toml
@@ -37,7 +37,7 @@ classifiers = [
37
dynamic = [ "version" ]
38
optional-dependencies.tests = [
39
"freezegun",
40
- "pytest",
+ "pytest>=9",
41
"pytest-cov",
42
]
43
urls."Issue tracker" = "https://github.com/python-humanize/humanize/issues"
@@ -102,11 +102,10 @@ strict = true
102
show_error_codes = true
103
104
[tool.pytest]
105
-ini_options.addopts = "--color=yes"
106
-ini_options.filterwarnings = [
107
- "error",
108
-]
109
-ini_options.testpaths = [ "tests" ]
+minversion = "9.0"
+addopts = [ "--color=yes" ]
+testpaths = [ "tests" ]
+filterwarnings = [ "error" ]
110
111
[tool.coverage]
112
# Regexes for lines to exclude from consideration
0 commit comments