Files
spoolman2/tests_integration/run.py
Donkie 746b891703 Improve local integration test run script
Can now specify what targets to run
2023-07-08 20:05:28 +02:00

43 lines
1.4 KiB
Python

"""Build and run the integration tests."""
# ruff: noqa: S605, S607, T201
import os
import sys
if __name__ == "__main__":
print("Building and running integration tests...")
print("Building Spoolman...")
os.system("docker build -t donkie/spoolman:test .")
print("Building Spoolman tester...")
os.system("docker build -t donkie/spoolman-tester:latest tests_integration")
# Support input arguments for running only specific tests
if len(sys.argv) > 1:
targets = sys.argv[1:]
# Check that all targets are valid
for target in targets:
if target not in ["postgres", "sqlite", "mariadb", "cockroachdb"]:
print(f"Unknown target: {target}")
sys.exit(1)
else:
print("No targets specified, running all tests...")
targets = [
"postgres",
"sqlite",
"mariadb",
"cockroachdb",
]
for target in targets:
print(f"Running integration tests against {target}...")
os.system(f"docker-compose -f tests_integration/docker-compose-{target}.yml down -v")
if (
os.system(f"docker-compose -f tests_integration/docker-compose-{target}.yml up --abort-on-container-exit")
> 0
):
print(f"Integration tests against {target} failed!")
sys.exit(1)
print("Integration tests passed!")