[ci] validate that all tests are in a ciGroup (#131173) (#131202)

* [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:
Spencer 2022-05-02 01:26:37 -07:00 committed by GitHub
parent eefdf974e4
commit e484af9119
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 1 deletions

View file

@ -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

View 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

View file

@ -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);
});