1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 18:15:42 +01:00

Skip integration test on regular test run

This commit is contained in:
Bernhard Reiter 2022-04-08 09:25:31 +02:00
parent 6dada4fd14
commit 1f88a0abe8
No known key found for this signature in database
GPG key ID: 2B7BA3BF9BC3A554

View file

@ -17,5 +17,8 @@ func TestMain(t *testing.T) {
}
}
if endOfTestParams == 0 {
t.Skip("skipping integration test, no `--` parameter found")
}
realMain(os.Args[endOfTestParams+1:])
}