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 0d715bd commit d5a5c7dCopy full SHA for d5a5c7d
.github/workflows/python-app.yml
@@ -35,8 +35,6 @@ jobs:
35
pip install pytest
36
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
37
- uses: chartboost/ruff-action@v1
38
- with:
39
- args: --extend-exclude '\.ipynb$'
40
- name: Test with pytest
41
run: |
42
pytest
pyproject.toml
@@ -10,6 +10,9 @@ unfixable = []
10
# restrict Line length to 99
11
line-length = 88
12
13
+# Exclude Jupyter notebooks from linting
14
+extend-exclude = ["\\.ipynb$"]
15
+
16
[build-system]
17
requires = ["setuptools >= 61"]
18
build-backend = "setuptools.build_meta"
0 commit comments