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 f998062 commit 5c9a7f7Copy full SHA for 5c9a7f7
.github/workflows/python-package.yml
@@ -19,14 +19,17 @@ jobs:
19
runs-on: ${{ matrix.os }}
20
steps:
21
- uses: actions/checkout@v4
22
+ - uses: chartboost/ruff-action@v1 #Check with ruff
23
- name: Install dependencies
24
run: |
25
python -m pip install --upgrade pip
- python -m pip install flake8 pytest
26
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
27
- - name: Lint with flake8
28
- run: |
29
- ruff check . --exit-zero
30
- - name: Test with pytest
+ if [ -f test_requirements.txt ]; then pip install -r test_requirements.txt; fi
+
+ - name: Run tests
31
32
- pytest
+ make quick_test
+ make test
33
34
35
0 commit comments