Skip to content

Commit 6affb59

Browse files
committed
fix: Add missing flake8 and pytest dependencies to dev requirements
- Add flake8>=6.0.0 to dev dependencies (was missing, causing CI failure) - Add pytest-cov and pytest-xdist for complete test coverage support - Ensures all CI tools are properly installed via pip install -e .[dev] - This should resolve the 'flake8: command not found' error
1 parent 978534e commit 6affb59

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

implementations/python/pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ dependencies = [
3030
[project.optional-dependencies]
3131
dev = [
3232
"pytest>=7.4.3",
33+
"pytest-cov>=4.1.0",
34+
"pytest-xdist>=3.3.1",
3335
"black>=22.12.0",
36+
"flake8>=6.0.0",
3437
"mypy>=1.1.1",
3538
"types-PyYAML>=6.0.0",
3639
"pylint>=2.17.4",

0 commit comments

Comments
 (0)