Skip to content

Commit 9dedba1

Browse files
committed
Updated the CI of repo
1 parent f1d37b0 commit 9dedba1

2 files changed

Lines changed: 11 additions & 4 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
3939
- name: Lint with pylint
4040
run: |
41-
pylint examples/ --fail-under=7.0 --disable=C0114,C0115,C0116
41+
pylint examples/ --fail-under=6.0 --disable=C0114,C0115,C0116,W0611
4242
4343
- name: Format check with black
4444
run: |

examples/requirements-dev.txt

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
# Development requirements (extends requirements.txt)
22
-r requirements.txt
33

4-
# Additional development tools
5-
pytest-cov>=4.1.0
6-
pytest-xdist>=3.3.0
4+
# Testing framework
5+
pytest>=7.4.0
6+
7+
# Code quality and linting tools
8+
pylint>=2.17.0
9+
black>=23.0.0
710
mypy>=1.5.0
811
flake8>=6.0.0
912
isort>=5.12.0
1013

14+
# Additional testing tools
15+
pytest-cov>=4.1.0
16+
pytest-xdist>=3.3.0
17+
1118
# Documentation
1219
sphinx>=7.1.0
1320
sphinx-rtd-theme>=1.3.0

0 commit comments

Comments
 (0)