Skip to content

Commit 4c07aca

Browse files
committed
fix: Resolve linting issues in run_tests.py
- Removed trailing whitespace from blank lines - Added newline at end of file
1 parent ab9fc24 commit 4c07aca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

run_tests.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def main():
1414
"""Run the test suite."""
1515
# Basic pytest command
1616
cmd = [sys.executable, "-m", "pytest", "tests/", "-v"]
17-
17+
1818
# Add platform-specific marker based on current platform
1919
if sys.platform == "linux":
2020
# Run all non-Windows, non-macOS tests plus Linux tests
@@ -25,11 +25,11 @@ def main():
2525
elif sys.platform == "win32":
2626
# Run all non-Linux, non-macOS tests plus Windows tests
2727
cmd.extend(["-m", "not (linux or macos)"])
28-
28+
2929
print(f"Running: {' '.join(cmd)}")
3030
result = subprocess.run(cmd)
3131
return result.returncode
3232

3333

3434
if __name__ == "__main__":
35-
sys.exit(main())
35+
sys.exit(main())

0 commit comments

Comments
 (0)