Skip to content

Commit e36434b

Browse files
committed
Move flake8 earlier in the ci_checks_max session
We want to run the checks from the fatests to the slowest, so we get errors as early as possible. Signed-off-by: Leandro Lucarella <[email protected]>
1 parent 8ca05c6 commit e36434b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/frequenz/repo/config/nox/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ def ci_checks_max(session: nox.Session) -> None:
2626
session.install("-e", ".[dev]")
2727

2828
formatting(session, False)
29+
flake8(session, False)
2930
mypy(session, False)
3031
pylint(session, False)
31-
flake8(session, False)
3232
pytest_max(session, False)
3333

3434

0 commit comments

Comments
 (0)