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 d9a4428 commit a5fe9b8Copy full SHA for a5fe9b8
.github/workflows/CI_test.yaml
@@ -44,14 +44,15 @@ jobs:
44
run: poetry run sphinx-build doc doc/_build
45
46
- name: Run pytest
47
- run: poetry run pytest -s --cov=open_source_template --cov-fail-under=80
+ # run: poetry run pytest -s --cov=obsweatherscale --cov-fail-under=80
48
+ run: poetry run pytest -s --cov=obsweatherscale
49
50
- name: Run linter
- run: poetry run pylint -rn --output-format=parseable open_source_template
51
+ run: poetry run pylint -rn --output-format=parseable obsweatherscale
52
53
- name: Run static checker
54
run: |
- OUTPUT=$(poetry run mypy open_source_template 2>&1 || true)
55
+ OUTPUT=$(poetry run mypy obsweatherscale 2>&1 || true)
56
echo "$OUTPUT"
57
58
# Extract the error count from lines
0 commit comments