Do not run integration tests by default.

This commit is contained in:
Timo Reimann 2017-10-13 11:08:03 +02:00 committed by Traefiker
parent 4d1285d8e5
commit 914f3d1fa3
3 changed files with 13 additions and 2 deletions

View file

@ -138,11 +138,13 @@ More: https://labix.org/gocheck
#### Method 2: `go`
- Tests can be run from the cloned directory, by `$ go test ./...` which should return `ok` similar to:
Unit tests can be run from the cloned directory by `$ go test ./...` which should return `ok` similar to:
```
ok _/home/user/go/src/github/containous/traefik 0.004s
```
Integration tests must be run from the `integration/` directory and require the `-integration` switch to be passed like this: `$ cd integration && go test -integration ./...`.
## Documentation
The [documentation site](http://docs.traefik.io/) is built with [mkdocs](http://mkdocs.org/)