GRM-73: feat: adopt per-test timing quality gate from devx 0.7.0

This commit is contained in:
2026-06-23 16:51:52 +00:00
parent 6032a07038
commit c5d8cbef5a
6 changed files with 13 additions and 10 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ jobs:
PYTHONPATH: src
run: |
. .venv/bin/activate
python3 -m devx.tools.check_test_speed --max-seconds 10
python3 -m devx.tools.check_test_speed --max-seconds 10 --max-single-seconds 0.5
- name: Dependency security scan
run: |
. .venv/bin/activate
+1 -1
View File
@@ -1 +1 @@
GRM-72
GRM-73
+1 -1
View File
@@ -9,7 +9,7 @@ all: setup
# Pinned devx version — update this when upgrading devx.
# All workflow files (.gitea/workflows/*.yml) must be updated to match.
DEVX_VERSION := v0.6.0
DEVX_VERSION := v0.7.0
install-devx: $(VENV)/bin/activate
@# REPO_TOKEN may come from .env (local) or environment (CI secrets)
+4 -3
View File
@@ -1,5 +1,6 @@
#!/usr/bin/env bash
# pre-commit hook: fail if unit tests take longer than 10 seconds.
# Aligned with CI timeout (ci.yml uses --max-seconds 10).
# pre-commit hook: fail if unit tests are too slow.
# Checks both total suite time (10s) and per-test time (0.5s).
# Aligned with CI (ci.yml uses same thresholds).
set -e
python3 -m devx.tools.check_test_speed --max-seconds 10
python3 -m devx.tools.check_test_speed --max-seconds 10 --max-single-seconds 0.5
+4 -3
View File
@@ -1,5 +1,6 @@
#!/usr/bin/env bash
# pre-push hook: fail if unit tests take longer than 10 seconds.
# Aligned with CI timeout (ci.yml uses --max-seconds 10).
# pre-push hook: fail if unit tests are too slow.
# Checks both total suite time (10s) and per-test time (0.5s).
# Aligned with CI (ci.yml uses same thresholds).
set -e
python3 -m devx.tools.check_test_speed --max-seconds 10
python3 -m devx.tools.check_test_speed --max-seconds 10 --max-single-seconds 0.5
+2 -1
View File
@@ -556,7 +556,8 @@ class TestVikunjaClient:
json={"done": True},
)
def test_http_error_raises_api_error(self) -> None:
@patch("gitea_runner_manager.api_clients.time.sleep")
def test_http_error_raises_api_error(self, mock_sleep: MagicMock) -> None:
client = VikunjaClient("https://work.example.com", "tok")
mock_resp = MagicMock()
mock_resp.raise_for_status.side_effect = _mock_http_error(http.HTTPStatus.INTERNAL_SERVER_ERROR, "server error")