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 f8b2ad2 commit 0274f85Copy full SHA for 0274f85
.github/workflows/flake8.yml
@@ -33,4 +33,4 @@ jobs:
33
uv sync --group ci
34
- name: Lint with flake8
35
run: |
36
- flake8 pycasx
+ uv run flake8 src/pycasx
.github/workflows/pylint.yml
@@ -30,4 +30,4 @@ jobs:
30
31
- name: Analysing the code with pylint
32
- pylint --output-format=text pycasx
+ uv run pylint --output-format=text src/pycasx
.github/workflows/pytest.yml
@@ -36,4 +36,4 @@ jobs:
uv sync --group tests
37
- name: Test with pytest
38
39
- pytest
+ uv run pytest
0 commit comments