forked from kgateway-dev/kgateway
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.github/workflows: disable performance tests (#10535)
- Loading branch information
1 parent
4b31f4a
commit 599a44e
Showing
3 changed files
with
41 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
changelog: | ||
- type: NON_USER_FACING | ||
description: >- | ||
Disable performance tests from running on nightly tests. | ||
skipCI-kube-tests:true | ||
skipCI-docs-build:true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,17 @@ | ||
# Performance Tests | ||
|
||
## Label | ||
Performance tests are labeled with `performance`. These tests are skipped on CI for PRs, but are run on a schedule as part of our [nightly tests](nightly-tests.md). | ||
Performance tests are labeled with `performance`. | ||
|
||
## When are these tests run? | ||
- These tests are skipped on CI for PRs. | ||
- They were run on a schedule as part of our [nightly tests](nightly-tests.md), but have since been disabled (https://github.com/solo-io/gloo/issues/10534) | ||
|
||
|
||
## How can you run these tests? | ||
You can run the `performance_test.go` locally with the make target: | ||
```bash | ||
make install-test-tools run-performance-tests | ||
``` | ||
|
||
Or through GitHub actions via the `performance-test` workflow. |