Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
afuetterer committed Oct 4, 2023
1 parent db8e3f1 commit 1aec9ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
# COVERALLS_FLAG_NAME: '${{ matrix.db-backend }}: ${{ matrix.python-version }}'
# COVERALLS_PARALLEL: true

# end-to-end tests: only on Python 3.11 and one DB
# end-to-end tests
- uses: actions/setup-node@v3
with:
node-version: 18
Expand All @@ -104,10 +104,10 @@ jobs:
run: |
npm install --dev
npm run build:prod
playwright install msedge
playwright install chromium
if: matrix.python-version == '3.11' && matrix.db-backend == 'postgres'
- name: Run end-to-end tests
run: pytest -p randomly -p no:cacheprovider --reuse-db --browser=msedge -m e2e
run: pytest -p randomly -p no:cacheprovider --reuse-db -m e2e
if: matrix.python-version == '3.11' && matrix.db-backend == 'postgres'

coveralls:
Expand Down

0 comments on commit 1aec9ac

Please sign in to comment.