[CI] Balance various Default CI Groups (#130932)

This commit is contained in:
Brian Seeders 2022-04-26 11:10:46 -04:00 committed by GitHub
parent 5d85976da4
commit c052e50b54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 7 additions and 7 deletions

View file

@ -27,7 +27,7 @@ export default function canvasApp({ loadTestFile, getService }) {
await security.testUser.restoreDefaults();
});
this.tags('ciGroup2'); // CI requires tags ヽ(゜Q。)
this.tags('ciGroup2');
loadTestFile(require.resolve('./smoke_test'));
loadTestFile(require.resolve('./expression'));
loadTestFile(require.resolve('./filters'));

View file

@ -9,7 +9,7 @@ import { FtrProviderContext } from '../../ftr_provider_context';
export default function ({ loadTestFile }: FtrProviderContext) {
describe('ObservabilityApp', function () {
this.tags('ciGroup6');
this.tags('ciGroup22');
loadTestFile(require.resolve('./alerts'));
loadTestFile(require.resolve('./alerts/add_to_case'));

View file

@ -43,7 +43,7 @@ export default function (context: FtrProviderContext) {
};
describe('Reporting Functional Tests with Deprecated Security configuration enabled', function () {
this.tags('ciGroup2');
this.tags('ciGroup20');
before(async () => {
const reportingAPI = context.getService('reportingAPI');

View file

@ -10,7 +10,7 @@ import { FtrProviderContext } from '../ftr_provider_context';
// eslint-disable-next-line import/no-default-export
export default function ({ getService, loadTestFile }: FtrProviderContext) {
describe('Reporting Functional Tests with Security enabled', function () {
this.tags('ciGroup2');
this.tags('ciGroup20');
before(async () => {
const reportingFunctional = getService('reportingFunctional');

View file

@ -9,7 +9,7 @@ import { FtrProviderContext } from '../../ftr_provider_context';
export default function ({ loadTestFile }: FtrProviderContext) {
describe('security APIs - Kerberos', function () {
this.tags('ciGroup16');
this.tags('ciGroup31');
loadTestFile(require.resolve('./kerberos_login'));
});

View file

@ -9,7 +9,7 @@ import { FtrProviderContext } from '../../ftr_provider_context';
export default function ({ loadTestFile }: FtrProviderContext) {
describe('security APIs - PKI', function () {
this.tags('ciGroup6');
this.tags('ciGroup22');
loadTestFile(require.resolve('./pki_auth'));
});

View file

@ -9,7 +9,7 @@ import { FtrProviderContext } from '../../ftr_provider_context';
export default function ({ loadTestFile }: FtrProviderContext) {
describe('security APIs - SAML', function () {
this.tags('ciGroup18');
this.tags('ciGroup27');
loadTestFile(require.resolve('./saml_login'));
});