1
0
mirror of https://github.com/containous/traefik.git synced 2025-10-05 07:33:19 +03:00

chore: update linter.

This commit is contained in:
Ludovic Fernandez
2020-07-07 14:42:03 +02:00
committed by GitHub
parent d698eba1e7
commit a20e90aa17
91 changed files with 646 additions and 459 deletions

View File

@@ -21,10 +21,12 @@ import (
checker "github.com/vdemeester/shakers"
)
var integration = flag.Bool("integration", false, "run integration tests")
var container = flag.Bool("container", false, "run container integration tests")
var host = flag.Bool("host", false, "run host integration tests")
var showLog = flag.Bool("tlog", false, "always show Traefik logs")
var (
integration = flag.Bool("integration", false, "run integration tests")
container = flag.Bool("container", false, "run container integration tests")
host = flag.Bool("host", false, "run host integration tests")
showLog = flag.Bool("tlog", false, "always show Traefik logs")
)
func Test(t *testing.T) {
if !*integration {