mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
CI: Trying to analyze Psql CI fails
This commit is contained in:
parent
d6c7c197bc
commit
3a8be92acc
3 changed files with 27 additions and 2 deletions
8
.github/actions/run-tests/action.yml
vendored
8
.github/actions/run-tests/action.yml
vendored
|
|
@ -102,7 +102,13 @@ runs:
|
|||
if: ${{ inputs.coverage-test != 'true' }}
|
||||
working-directory: testing_mygame
|
||||
run: |
|
||||
evennia test --settings=settings --keepdb --timing evennia
|
||||
if [ "${{ inputs.testing-db }}" = "postgresql" ]; then
|
||||
# PostgreSQL runs in CI have historically been sensitive to reusing
|
||||
# stale test DB state; run with explicit verbosity for easier diagnosis.
|
||||
evennia test --settings=settings --timing -v 2 evennia
|
||||
else
|
||||
evennia test --settings=settings --keepdb --timing evennia
|
||||
fi
|
||||
shell: bash
|
||||
|
||||
# OBS - it's important to not run the coverage tests with --parallel, it messes up the coverage
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue