重命名为动态 Runner 并记录协议调度路线
test / python (pull_request) Successful in 9s
test / shell (pull_request) Successful in 15s

This commit is contained in:
2026-09-16 14:51:06 +00:00
parent 75798f4c89
commit 83eb87bcec
16 changed files with 79 additions and 15 deletions
+2 -2
View File
@@ -4,8 +4,8 @@ import json
import pytest
from gitea_microvm_runner import controller
from gitea_microvm_runner.models import IdentityBinding, RunnerRequest
from gitea_dynamic_runner import controller
from gitea_dynamic_runner.models import IdentityBinding, RunnerRequest
def queued_job(**overrides):
+1 -1
View File
@@ -1,6 +1,6 @@
import pytest
from gitea_microvm_runner.jwt_broker import extract_svid
from gitea_dynamic_runner.jwt_broker import extract_svid
def test_extract_svid_from_spire_json():
+2 -2
View File
@@ -1,7 +1,7 @@
import pytest
from gitea_microvm_runner.models import RunnerRequest
from gitea_microvm_runner import pod_worker
from gitea_dynamic_runner.models import RunnerRequest
from gitea_dynamic_runner import pod_worker
def request() -> RunnerRequest: