Skip to content

Commit

Permalink
Disable cypress tests for real
Browse files Browse the repository at this point in the history
  • Loading branch information
hanzei committed Oct 11, 2024
1 parent 743778b commit f77ce97
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
e2e-cypress-tests-pinned: # Run only on master push and scheduled runs
runs-on: ubuntu-latest-4-cores
# Disabled broken test
if: ${{ false || github.ref_name == 'master' || github.event_name == 'schedule' }}
if: ${{ false && github.ref_name == 'master' || github.event_name == 'schedule' }}
needs:
- lint
services:
Expand Down Expand Up @@ -302,7 +302,8 @@ jobs:
e2e-cypress-tests-master: # Run only on master push and scheduled runs
runs-on: ubuntu-latest-4-cores
if: ${{ github.ref_name == 'master' || github.event_name == 'schedule' }}
# Disabled broken test
if: ${{ false && github.ref_name == 'master' || github.event_name == 'schedule' }}
needs:
- lint
services:
Expand Down

0 comments on commit f77ce97

Please sign in to comment.