mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
* [ci] validate that all tests are in a ciGroup
* make new checks script executable
* skip failing suite
(cherry picked from commit 7327155dbc
)
# Conflicts:
# x-pack/test/examples/screenshotting/index.ts
This commit is contained in:
parent
eefdf974e4
commit
e484af9119
3 changed files with 13 additions and 1 deletions
|
@ -7,6 +7,7 @@ export DISABLE_BOOTSTRAP_VALIDATION=false
|
|||
|
||||
.buildkite/scripts/steps/checks/commit/commit.sh
|
||||
.buildkite/scripts/steps/checks/telemetry.sh
|
||||
.buildkite/scripts/steps/checks/validate_ci_groups.sh
|
||||
.buildkite/scripts/steps/checks/ts_projects.sh
|
||||
.buildkite/scripts/steps/checks/jest_configs.sh
|
||||
.buildkite/scripts/steps/checks/doc_api_changes.sh
|
||||
|
|
9
.buildkite/scripts/steps/checks/validate_ci_groups.sh
Executable file
9
.buildkite/scripts/steps/checks/validate_ci_groups.sh
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
source .buildkite/scripts/common/util.sh
|
||||
|
||||
echo --- Ensure that all tests are in a CI Group
|
||||
checks-reporter-with-killswitch "Ensure that all tests are in a CI Group" \
|
||||
node scripts/ensure_all_tests_in_ci_group
|
|
@ -11,7 +11,9 @@ import { setupSpacesAndUsers, tearDown } from '..';
|
|||
// eslint-disable-next-line import/no-default-export
|
||||
export default function alertingTests({ loadTestFile, getService }: FtrProviderContext) {
|
||||
describe('Alerts', () => {
|
||||
describe('legacy alerts', () => {
|
||||
describe('legacy alerts', function () {
|
||||
this.tags('ciGroup17');
|
||||
|
||||
before(async () => {
|
||||
await setupSpacesAndUsers(getService);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue