ai-dev-system / api /app /tools /test_runner.py
42hgyn26hz-cpu
Initial commit
4f4aa9b
raw
history blame contribute delete
198 Bytes
import subprocess
def run_tests():
result = subprocess.run(
["pytest"],
capture_output=True,
text=True
)
return result.returncode, result.stdout + result.stderr