Skip to content

Commit

Permalink
Linters.
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Lalancette <[email protected]>
  • Loading branch information
clalancette committed Jan 3, 2025
1 parent 5daba62 commit b6e1f79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions colcon_core/task/python/test/pytest.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ async def step(self, context, env, setup_py_data): # noqa: D102
EXIT_CODE_NO_TESTS = EXIT_NOTESTSCOLLECTED # noqa: N806

if sys.platform == 'win32':
EXIT_CODE_TESTS_CRASHED = 3221225477
EXIT_CODE_TESTS_CRASHED = 3221225477 # noqa: N806

Check warning on line 174 in colcon_core/task/python/test/pytest.py

View check run for this annotation

Codecov / codecov/patch

colcon_core/task/python/test/pytest.py#L174

Added line #L174 was not covered by tests
else:
EXIT_CODE_TESTS_CRASHED = -11
EXIT_CODE_TESTS_CRASHED = -11 # noqa: N806

Check warning on line 176 in colcon_core/task/python/test/pytest.py

View check run for this annotation

Codecov / codecov/patch

colcon_core/task/python/test/pytest.py#L176

Added line #L176 was not covered by tests

if completed.returncode in (
EXIT_CODE_TESTS_FAILED, EXIT_CODE_TESTS_CRASHED
Expand Down

0 comments on commit b6e1f79

Please sign in to comment.