Skip to content

Commit a5fe9b8

Browse files
author
Icíar Lloréns Jover
committed
Fix CI_test: install dev deps and correct package name
1 parent d9a4428 commit a5fe9b8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/CI_test.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,15 @@ jobs:
4444
run: poetry run sphinx-build doc doc/_build
4545

4646
- name: Run pytest
47-
run: poetry run pytest -s --cov=open_source_template --cov-fail-under=80
47+
# run: poetry run pytest -s --cov=obsweatherscale --cov-fail-under=80
48+
run: poetry run pytest -s --cov=obsweatherscale
4849

4950
- name: Run linter
50-
run: poetry run pylint -rn --output-format=parseable open_source_template
51+
run: poetry run pylint -rn --output-format=parseable obsweatherscale
5152

5253
- name: Run static checker
5354
run: |
54-
OUTPUT=$(poetry run mypy open_source_template 2>&1 || true)
55+
OUTPUT=$(poetry run mypy obsweatherscale 2>&1 || true)
5556
echo "$OUTPUT"
5657
5758
# Extract the error count from lines

0 commit comments

Comments
 (0)