fix(ci): resolve duplicate assembly attributes and flaky tests for deploy-prod and collection orchestrator
Validators (Pushes and Pull Requests) / validate-ui-and-storage (push) Successful in 16s
Validators (Pushes and Pull Requests) / validate-core (push) Failing after 1m47s

This commit is contained in:
2026-07-13 10:11:07 +09:00
parent ef955750b1
commit d140784737
3 changed files with 29 additions and 10 deletions
@@ -48,10 +48,13 @@ public class KisDataCollectionOrchestratorTests
[Fact]
public async Task RunCollectionAsync_WithCachedSnapshot_ShouldNotCallKisApiClient()
{
var mockTime = new DateTime(2026, 7, 13, 13, 0, 0, DateTimeKind.Utc); // 2026-07-13 22:00:00 KST (Market closed)
_orchestrator.UtcNowProvider = () => mockTime;
var runId = "test-run-001";
var ticker = "005930";
var account = "mock";
var todayPrefix = DateTime.UtcNow.AddHours(9).ToString("yyyy-MM-dd");
var todayPrefix = mockTime.AddHours(9).ToString("yyyy-MM-dd");
var cachedSnapshot = new CollectionSnapshotRecord(
RunId: "prev-run",