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 93fee85 commit c16883eCopy full SHA for c16883e
hooks/openfeature-hooks-opentelemetry/pyproject.toml
@@ -27,17 +27,23 @@ Homepage = "https://github.com/open-feature/python-sdk-contrib"
27
28
[tool.hatch]
29
30
-[tool.hatch.envs.default]
+[tool.hatch.envs.hatch-test]
31
dependencies = [
32
"coverage[toml]>=6.5",
33
"pytest",
34
]
35
+pre-install-commands = [
36
+ "hatch build",
37
+]
38
-[tool.hatch.envs.default.scripts]
-test = "pytest {args:tests}"
-test-cov = "coverage run -m pytest {args:tests}"
39
+[tool.hatch.envs.hatch-test.scripts]
40
+run = "pytest {args:tests}"
41
+run-cov = "coverage run -m pytest {args:tests}"
42
+cov-combine = "coverage combine"
43
cov-report = [
44
"coverage xml",
45
+ "coverage html",
46
+ "coverage report",
47
48
cov = [
49
"test-cov",
0 commit comments