Skip to content

Commit

Permalink
Skip ESTF failures (#136912) (#137026)
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)

# Conflicts:
#	x-pack/test/api_integration/apis/monitoring/apm/instance_mb.js
#	x-pack/test/api_integration/apis/monitoring/apm/instances_mb.js
  • Loading branch information
matschaffer authored Jul 25, 2022
1 parent 74f1317 commit 21e94e1
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 @@ export default function ({ getService }) {
const supertest = getService('supertest');
const esArchiver = getService('esArchiver');

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 archive = 'x-pack/test/functional/es_archives/monitoring/apm_mb';
const timeRange = {
min: '2018-08-31T12:59:49.104Z',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ export default function ({ getService }) {
const supertest = getService('supertest');
const esArchiver = getService('esArchiver');

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 archive = 'x-pack/test/functional/es_archives/monitoring/apm_mb';
const timeRange = {
min: '2018-08-31T12:59:49.104Z',
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 @@ -12,7 +12,10 @@ export default function ({ getService }) {
const supertest = getService('supertest');
const esArchiver = getService('esArchiver');

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 21e94e1

Please sign in to comment.