File size: 289 Bytes
7e9a520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
param(
    [switch]$Quiet
)

$ErrorActionPreference = "Stop"

$args = @(
    "tests/test_app_endpoints.py",
    "tests/test_coordinator.py",
    "tests/test_tools.py",
    "tests/test_bench_runner.py"
)

if ($Quiet) {
    python -m pytest @args -q
} else {
    python -m pytest @args -v
}