Skip ESTF failures (#136912) (#136978)

* Skip ESTF failures

* Right, can't tag stabby lambdas

(cherry picked from commit 63c7beeb31)

Co-authored-by: Mat Schaffer <mat@elastic.co>
This commit is contained in:
Kibana Machine 2022-07-22 14:07:46 -04:00 committed by GitHub
parent 9583050422
commit 51ff3b899e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 20 additions and 5 deletions

View file

@ -12,7 +12,10 @@ import { getLifecycleMethods } from '../data_stream';
export default function ({ getService }) {
const supertest = getService('supertest');
describe('instance detail mb', () => {
describe('instance detail mb', function () {
// Archive contains non-cgroup data which collides with the in-cgroup services present by default on cloud deployments
this.tags(['skipCloud']);
const { setup, tearDown } = getLifecycleMethods(getService);
const archive = 'x-pack/test/functional/es_archives/monitoring/apm_mb';
const timeRange = {

View file

@ -11,7 +11,10 @@ import { getLifecycleMethods } from '../data_stream';
export default function ({ getService }) {
const supertest = getService('supertest');
describe('list mb', () => {
describe('list mb', function () {
// Archive contains non-cgroup data which collides with the in-cgroup services present by default on cloud deployments
this.tags(['skipCloud']);
const { setup, tearDown } = getLifecycleMethods(getService);
const archive = 'x-pack/test/functional/es_archives/monitoring/apm_mb';
const timeRange = {

View file

@ -12,7 +12,10 @@ export default function ({ getService }) {
const supertest = getService('supertest');
const esArchiver = getService('esArchiver');
describe('list', () => {
describe('list', function () {
// Archive contains non-cgroup data which collides with the in-cgroup services present by default on cloud deployments
this.tags(['skipCloud']);
describe('with trial license clusters', () => {
const archive = 'x-pack/test/functional/es_archives/monitoring/multicluster';
const timeRange = {

View file

@ -13,7 +13,10 @@ export default function ({ getService }) {
const supertest = getService('supertest');
const { setup, tearDown } = getLifecycleMethods(getService);
describe('list mb', () => {
describe('list mb', function () {
// Archive contains non-cgroup data which collides with the in-cgroup services present by default on cloud deployments
this.tags(['skipCloud']);
describe('with trial license clusters', () => {
const archive = 'x-pack/test/functional/es_archives/monitoring/multicluster_mb';
const timeRange = {

View file

@ -12,7 +12,10 @@ export default function ({ getService }) {
const supertest = getService('supertest');
const esArchiver = getService('esArchiver');
describe('cluster', () => {
describe('cluster', function () {
// Archive contains non-cgroup data which collides with the in-cgroup services present by default on cloud deployments
this.tags(['skipCloud']);
const archive = 'x-pack/test/functional/es_archives/monitoring/standalone_cluster';
const timeRange = {
min: '2019-02-04T16:52:11.741Z',