14 lines
273 B
PowerShell
14 lines
273 B
PowerShell
param(
|
|
[ValidateSet("smoke", "nightly")]
|
|
[string]$Profile = "smoke",
|
|
[int]$Seed = 20260226,
|
|
[string]$Output = "out/supply-chain"
|
|
)
|
|
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
python tests/supply-chain/run_suite.py `
|
|
--profile $Profile `
|
|
--seed $Seed `
|
|
--output $Output
|