Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
jefer94 committed Jan 22, 2025
1 parent 56ad215 commit 728c37a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
cp .env.example .env
- name: Check for undefined variables
run: poetry run flake8 --select=F
run: poetry run flake8 . --select=F

naming-conventions:
needs: cache
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
cp .env.example .env
- name: Check for undefined variables
run: poetry run flake8 --select=N
run: poetry run flake8 . --select=N

unexpected-behaviors:
needs: cache
Expand Down Expand Up @@ -237,7 +237,7 @@ jobs:
cp .env.example .env
- name: Check for undefined variables
run: poetry run flake8 --select=B
run: poetry run flake8 . --select=B

tests:
needs: [migrations]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ lint = "scripts.cmd:lint"
update-sql-keywords = "scripts.update_sql_keywords_json:write_json"
"precommit:install" = "scripts.cmd:install_precommit"
"docker:build" = "scripts.docker_build:run"
flake8 = "scripts.cmd:flake8"
# flake8 = "scripts.cmd:flake8"

[tool.poetry]
package-mode = true
Expand Down

0 comments on commit 728c37a

Please sign in to comment.