Skip to content

Commit 5d5b35b

Browse files
committed
Tiny formatting fix
1 parent 8a8affa commit 5d5b35b

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

test/conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
if test_dir not in sys.path:
1414
sys.path.insert(0, test_dir)
1515

16+
# noqa: E402
1617
from framework.runner import CFJavaTestSession
1718

1819
# Global test session instance

test/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ testpaths = ["."]
2929
python_files = ["test_*.py"]
3030
python_classes = ["Test*"]
3131
python_functions = ["test_*"]
32-
norecursedirs = ["framework", "__pycache__", ".git"]
32+
norecursedirs = ["framework", "__pycache__", ".git", "venv"]
3333
markers = [
3434
"all: runs on all Java versions",
3535
"sapmachine21: requires SapMachine 21",

test/test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,11 @@
2626
print("❌ Virtual environment not found. Run: ./test.py setup")
2727
sys.exit(1)
2828

29+
# noqa: E402
2930
import click
31+
# noqa: E402
3032
import colorama
33+
# noqa: E402
3134
from colorama import Fore, Style
3235

3336
# Initialize colorama for cross-platform colored output

0 commit comments

Comments
 (0)