Skip to content

Commit

Permalink
Set DEBUG to True by default in env template
Browse files Browse the repository at this point in the history
  • Loading branch information
Xpirix committed May 29, 2024
1 parent a814ff7 commit bb714a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dockerize/.env.template
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ DATABASE_HOST=db

# Django settings
DJANGO_SETTINGS_MODULE=settings_docker
DEBUG=False
DEBUG=True

# Docker volumes
QGISPLUGINS_STATIC_VOLUME=static-data
Expand Down
2 changes: 1 addition & 1 deletion playwright/ci-test/tests/00-authentication.setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test('authentication-setup', async ({ page }) => {

await expect(page.getByRole('link', { name: 'Login' })).toBeVisible();

await page.getByRole('link', { name: 'Login' }).click({ force: true });
await page.getByRole('link', { name: 'Login' }).click();

await page.waitForURL('**/accounts/login/');

Expand Down

0 comments on commit bb714a4

Please sign in to comment.