diff options
| author | Paul Buetow <paul@buetow.org> | 2026-05-19 09:47:09 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-05-19 09:47:09 +0300 |
| commit | 5bd44dcb1e588fd5df8c02aec58353f7aa8f7d13 (patch) | |
| tree | d4059fce1d43a1f0f0815d753b627802e7599b13 /integrationtests/family_test.go | |
| parent | d699ef44a9ded5d419a470a4f6715ecff7f0fcd1 (diff) | |
t6 stabilize family recording integration
Diffstat (limited to 'integrationtests/family_test.go')
| -rw-r--r-- | integrationtests/family_test.go | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/integrationtests/family_test.go b/integrationtests/family_test.go index ad35b46..7558bfa 100644 --- a/integrationtests/family_test.go +++ b/integrationtests/family_test.go @@ -10,9 +10,15 @@ import ( parquetgo "github.com/parquet-go/parquet-go" ) +const ( + familyParquetDuration = 6 + familyWorkloadStartupEnv = "IOR_WORKLOAD_STARTUP_DELAY_MS=1000" +) + func TestFamilyParquetRecordingAndAggregation(t *testing.T) { h := newTestHarness(t) - path, pid, err := h.RunParquet("family-mixed", defaultDuration) + h.WorkloadEnv = []string{familyWorkloadStartupEnv} + path, pid, err := h.RunParquet("family-mixed", familyParquetDuration) if err != nil { t.Fatalf("run family-mixed parquet scenario: %v", err) } |
