Remove redundant run_tests.py wrapper

This commit is contained in:
Oliver Hofmann 2026-05-10 11:51:13 +02:00
parent 5a50d0be04
commit 92ed7368eb

View File

@ -1,8 +0,0 @@
#!/usr/bin/env python3
"""Pytest runner for Ollama Proxy tests."""
import subprocess
import sys
if __name__ == "__main__":
result = subprocess.run([sys.executable, "-m", "pytest"] + sys.argv[1:], cwd="backend")
sys.exit(result.returncode)