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 b21ccb2 commit a2413c3Copy full SHA for a2413c3
.github/workflows/ci.yaml
@@ -92,7 +92,7 @@ jobs:
92
path: htmlcov
93
include-hidden-files: true
94
95
- - run: uv run --frozen coverage report --fail-under 70
+ - run: uv run --frozen coverage report --fail-under 83
96
# https://github.com/marketplace/actions/alls-green#why used for branch protection checks
97
check:
98
if: always()
.vscode/launch.json
@@ -0,0 +1,11 @@
1
+{
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "name": "Debug Unit Test",
6
+ "type": "python",
7
+ "request": "test",
8
+ "justMyCode": false
9
+ }
10
+ ]
11
+}
.vscode/settings.json
@@ -0,0 +1,5 @@
+ "python.testing.pytestArgs": ["."],
+ "python.testing.unittestEnabled": false,
+ "python.testing.pytestEnabled": true
0 commit comments