From: David NĂ©grier Date: Thu, 16 Apr 2020 20:31:48 +0000 (+0200) Subject: Removing E2E test from running in CI (it is run in K8S now) X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=c4b9c02d75f7970bbaa22499e5b1bd16a36eda5a;p=libreadventure.git Removing E2E test from running in CI (it is run in K8S now) --- diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index eee2755..a6c86ba 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -65,28 +65,4 @@ jobs: - name: "Jasmine" run: yarn test working-directory: "back" - - e2e: - name: "End to end testing with cypress" - - runs-on: "ubuntu-latest" - - steps: - - name: "Checkout" - uses: "actions/checkout@v2.0.0" - - name: "Init .env" - run: "cp .env.template .env" - - - name: "Init containers" - run: "docker-compose -f docker-compose.yaml -f docker-compose.ci.yml run --rm wait_app" #start the containers and then wait for the website to be online - - - name: "Run cypress" - run: "docker-compose -f docker-compose.yaml -f docker-compose.ci.yml up --exit-code-from cypress cypress" # run cypress in docker-compose and get its exit code - - - name: "Upload the screenshot on test failure" - uses: actions/upload-artifact@v1 - if: failure() - with: - name: "screenshot" - path: "./e2e/cypress/screenshots/spec.js/WorkAdventureGame -- loads (failed).png" \ No newline at end of file