mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[ci] validate that all tests are in a ciGroup (#131173)
* [ci] validate that all tests are in a ciGroup * make new checks script executable * skip failing suite
This commit is contained in:
parent
f3aeac0235
commit
7327155dbc
4 changed files with 17 additions and 3 deletions
|
@ -8,6 +8,7 @@ export DISABLE_BOOTSTRAP_VALIDATION=false
|
|||
.buildkite/scripts/steps/checks/commit/commit.sh
|
||||
.buildkite/scripts/steps/checks/bazel_packages.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);
|
||||
});
|
||||
|
|
|
@ -20,9 +20,11 @@ export default function ({
|
|||
const testSubjects = getService('testSubjects');
|
||||
const PageObjects = getPageObjects(['common']);
|
||||
|
||||
describe('Screenshotting Example', function () {
|
||||
// FAILING: https://github.com/elastic/kibana/issues/131190
|
||||
describe.skip('Screenshotting Example', function () {
|
||||
this.tags('ciGroup13');
|
||||
|
||||
before(async () => {
|
||||
this.tags('ciGroup13');
|
||||
await esArchiver.loadIfNeeded('test/functional/fixtures/es_archiver/logstash_functional');
|
||||
await kibanaServer.importExport.load('test/functional/fixtures/kbn_archiver/visualize.json');
|
||||
await PageObjects.common.navigateToApp('screenshottingExample');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue