Sable: Run services tests (#234)

Also add per-test timeout so I could debug why Sable's services test hang
This commit is contained in:
2023-09-24 15:33:36 +02:00
committed by GitHub
parent 2ee8a0694f
commit d88349a403
7 changed files with 113 additions and 108 deletions

View File

@ -212,7 +212,7 @@ def get_test_job(*, config, test_config, test_id, version_flavor, jobs):
"name": "Install irctest dependencies",
"run": script(
"python -m pip install --upgrade pip",
"pip install pytest pytest-xdist -r requirements.txt",
"pip install pytest pytest-xdist pytest-timeout -r requirements.txt",
*(
software_config["extra_deps"]
if "extra_deps" in software_config
@ -224,7 +224,7 @@ def get_test_job(*, config, test_config, test_id, version_flavor, jobs):
"name": "Test with pytest",
"timeout-minutes": 30,
"run": (
f"PYTEST_ARGS='--junit-xml pytest.xml' "
f"PYTEST_ARGS='--junit-xml pytest.xml --timeout 60' "
f"PATH=$HOME/.local/bin:$PATH "
f"{env}make {test_id}"
),