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 bf883ce commit f7e3590Copy full SHA for f7e3590
.github/workflows/ci.yml
@@ -57,13 +57,17 @@ jobs:
57
- name: Check formatting with Black
58
run: |
59
pip install black
60
- black --check --diff src/ tests/
+ black --check --diff .
61
62
# Paso para linting con Flake8
63
- name: Lint with Flake8
64
65
pip install flake8
66
- flake8 src/ tests/ --count --max-complexity=10 --max-line-length=88 --statistics
+ flake8 users/ products/ myproject/ tests/ \
67
+ --count \
68
+ --max-complexity=10 \
69
+ --max-line-length=88 \
70
+ --statistics
71
72
- name: 📦 Instalar dependencias
73
0 commit comments