Skip to content

Commit

Permalink
Skip ESTF failures (elastic#136912)
Browse files Browse the repository at this point in the history
* Skip ESTF failures

* Right, can't tag stabby lambdas

(cherry picked from commit 63c7bee)
  • Loading branch information
matschaffer committed Jul 22, 2022
1 parent 2ef066b commit 8a6544f
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
5 changes: 4 additions & 1 deletion x-pack/test/api_integration/apis/monitoring/cluster/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 8a6544f

Please sign in to comment.