You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/contributing/how-integration-tests-work.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -20,13 +20,13 @@ This will locally build the `quay.io/cortexproject/cortex:latest` image used by
20
20
Once the Docker image is built, you can run integration tests:
21
21
22
22
```
23
-
go test -v -tags=requires_docker ./integration/...
23
+
go test -v -tags=integration,requires_docker,integration_alertmanager,integration_memberlist,integration_querier,integration_ruler,integration_query_fuzz ./integration/...
24
24
```
25
25
26
-
If you want to run a single test you can use a filter. For example, to only run `TestChunksStorageAllIndexBackends`:
26
+
If you want to run a single test you can use a filter. For example, to only run `TestRulerAPISharding`:
27
27
28
28
```
29
-
go test -v -tags=requires_docker ./integration -run "^TestChunksStorageAllIndexBackends$"
29
+
go test -v -tags=integration,integration_ruler -timeout 2400s -v -count=1 ./integration/... -run "^TestRulerAPISharding$"
0 commit comments