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 39ac2c1 commit 8f9364fCopy full SHA for 8f9364f
.github/workflows/tests.yml
@@ -33,15 +33,15 @@ jobs:
33
- name: Install Dependencies
34
run: |
35
npm install --no-progress
36
- pip install flake8 pytest
+ pip install pytest ruff
37
- name: Set Windows environment
38
if: startsWith(matrix.os, 'windows')
39
40
echo 'GYP_MSVS_VERSION=2015' >> $Env:GITHUB_ENV
41
echo 'GYP_MSVS_OVERRIDE_PATH=C:\\Dummy' >> $Env:GITHUB_ENV
42
- name: Lint Python
43
if: startsWith(matrix.os, 'ubuntu')
44
- run: flake8 . --ignore=E203,W503 --max-complexity=101 --max-line-length=88 --show-source --statistics
+ run: ruff --format=github --target-version=py37 .
45
- name: Run Python tests
46
run: python -m pytest
47
# - name: Run doctests with pytest
0 commit comments