mirror of
https://github.com/caddyserver/caddy.git
synced 2025-05-28 22:55:50 +08:00
ci: exclude integration tests for now (#3188)
A workaround for inconsistent results on Windows
This commit is contained in:
@ -68,6 +68,11 @@ func InitServer(t *testing.T, rawConfig string, configType string) {
|
||||
// type. The configType must be either "json" or the adapter type.
|
||||
func initServer(t *testing.T, rawConfig string, configType string) error {
|
||||
|
||||
if testing.Short() {
|
||||
t.SkipNow()
|
||||
return nil
|
||||
}
|
||||
|
||||
err := validateTestPrerequisites()
|
||||
if err != nil {
|
||||
t.Skipf("skipping tests as failed integration prerequisites. %s", err)
|
||||
|
Reference in New Issue
Block a user