Skip to content

Commit 3c82fef

Browse files
resolve conversation
1 parent 28be6a1 commit 3c82fef

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140

141141
Tests:
142142
name: Tests (Python-${{ matrix.python-version }}, Exasol-${{ matrix.exasol-version}})
143-
needs: [ Documentation, Lint, Type-Check, Security]
143+
needs: [ Documentation, Lint, Type-Check, Security, Format]
144144
runs-on: ubuntu-latest
145145
env:
146146
GITHUB_TOKEN: ${{ secrets.ALTERNATIVE_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}

exasol/toolbox/nox/_format.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,6 @@ def fix(session: Session) -> None:
4444

4545
@nox.session(name="project:format", python=False)
4646
def fmt_check(session: Session) -> None:
47+
"""Runs the format check on the code"""
4748
py_files = [f"{file}" for file in python_files(PROJECT_CONFIG.root)]
4849
_code_format(session=session, mode=Mode.Check, files=py_files)

0 commit comments

Comments
 (0)