Skip to content

Commit

Permalink
Set env vars in standard way.
Browse files Browse the repository at this point in the history
  • Loading branch information
danielballan committed Nov 14, 2023
1 parent 593e1b7 commit e38d3f1
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,13 @@ jobs:
shell: bash -l {0}
run: |
set -vxeuo pipefail
# Provide test suite with a PostgreSQL database to use.
export TILED_TEST_POSTGRESQL_URI=postgresql+asyncpg://postgres:secret@localhost:5432
# Opt in to LDAPAuthenticator tests.
export TILED_TEST_LDAP=1
coverage run -m pytest -v -m "not slow"
coverage report
env:
# Provide test suite with a PostgreSQL database to use.
TILED_TEST_POSTGRESQL_URI: postgresql+asyncpg://postgres:secret@localhost:5432
# Opt in to LDAPAuthenticator tests.
TILED_TEST_LDAP: 1

windows_checks:
runs-on: windows-latest
Expand Down

0 comments on commit e38d3f1

Please sign in to comment.