mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Skip ESTF failures (#136912)
* Skip ESTF failures * Right, can't tag stabby lambdas
This commit is contained in:
parent
4ad72fc876
commit
63c7beeb31
5 changed files with 20 additions and 5 deletions
|
@ -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 = {
|
||||
|
|
|
@ -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 = {
|
||||
|
|
|
@ -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 = {
|
||||
|
|
|
@ -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 = {
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue