From 293f25df193235a1612d4f26e037ee8a5684420c Mon Sep 17 00:00:00 2001 From: John Hill Date: Tue, 11 Jul 2023 14:31:23 -0700 Subject: [PATCH] [CI] Update Github Actions to combine deploysentinel PR reports and driveby (#6784) * include git hash * skip a test --- .github/workflows/e2e-couchdb.yml | 1 + e2e/tests/framework/baseFixtures.e2e.spec.js | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e-couchdb.yml b/.github/workflows/e2e-couchdb.yml index 264cae4528..286190f755 100644 --- a/.github/workflows/e2e-couchdb.yml +++ b/.github/workflows/e2e-couchdb.yml @@ -49,6 +49,7 @@ jobs: - name: Run CouchDB Tests and publish to deploysentinel env: DEPLOYSENTINEL_API_KEY: ${{ secrets.DEPLOYSENTINEL_API_KEY }} + COMMIT_INFO_SHA: ${{github.event.pull_request.head.sha }} run: npm run test:e2e:couchdb - name: Publish Results to Codecov.io diff --git a/e2e/tests/framework/baseFixtures.e2e.spec.js b/e2e/tests/framework/baseFixtures.e2e.spec.js index 81b1697538..ee8dc5a893 100644 --- a/e2e/tests/framework/baseFixtures.e2e.spec.js +++ b/e2e/tests/framework/baseFixtures.e2e.spec.js @@ -29,7 +29,8 @@ relates to how we've extended it (i.e. ./e2e/baseFixtures.js) and assumptions ma const { test } = require('../../baseFixtures.js'); test.describe('baseFixtures tests', () => { - test('Verify that tests fail if console.error is thrown', async ({ page }) => { + //Skip this test for now https://github.com/nasa/openmct/issues/6785 + test.fixme('Verify that tests fail if console.error is thrown', async ({ page }) => { test.fail(); //Go to baseURL await page.goto('./', { waitUntil: 'domcontentloaded' });