⚗️ stop running tests requiring AYON server by default

this is to ensure test will still run on GH.
This commit is contained in:
Ondřej Samohel 2025-04-16 12:23:56 +02:00
parent 0cdbd07114
commit 7b0b5a46ec
No known key found for this signature in database
GPG key ID: 02376E18990A97C6
3 changed files with 13 additions and 2 deletions

View file

@ -242,7 +242,7 @@ function Run-From-Code {
function Run-Tests {
$Poetry = "$RepoRoot\.poetry\bin\poetry.exe"
$RunArgs = @( "run", "pytest", "$($RepoRoot)/tests")
$RunArgs = @( "run", "pytest", "$($RepoRoot)/tests", "-m", "not server")
& $Poetry $RunArgs @arguments
}