Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ def lint_ruff(context):
context,
ToxEnvironment.CHECK,
"""
ruff check . --fix --cache-dir build/ruff
ruff check . --fix --exit-non-zero-on-fix --cache-dir build/ruff
""",
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
@relation(SDOC-SRS-146, scope=file)
"""

import sys

import pytest

from strictdoc.backend.sdoc_source_code.models.source_file_info import (
SourceFileTraceabilityInfo,
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
@relation(SDOC-SRS-146, scope=file)
"""

import sys

import pytest

from strictdoc.backend.sdoc_source_code.models.function import Function
from strictdoc.backend.sdoc_source_code.models.function_range_marker import (
FunctionRangeMarker,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

# The tests in this file has strings with whitespace that must not be linted.
# ruff: noqa: W291,W293
import sys
from typing import List

import pytest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
@relation(SDOC-SRS-146, scope=file)
"""

import sys

import pytest

from strictdoc.backend.sdoc_source_code.models.source_file_info import (
SourceFileTraceabilityInfo,
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
@relation(SDOC-SRS-34, SDOC-SRS-141, scope=file)
"""

import sys

import pytest

from strictdoc.backend.sdoc_source_code.marker_parser import MarkerParser
from strictdoc.backend.sdoc_source_code.models.function_range_marker import (
FunctionRangeMarker,
Expand Down