Skip to content

Commit

Permalink
Release of 4.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustry committed Mar 7, 2024
1 parent c1bf95d commit 5ad27ed
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## 4.2.5 - 2024-03-07

* Improve checks for PostgreSQL layers

## 4.2.4 - 2024-02-28

* Fix a Python error when saving the file if a layer was removed from the project and used in the configuration before
Expand Down
8 changes: 5 additions & 3 deletions lizmap/test/test_postgresql.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@
PG_USER,
)
CREDENTIALS = True
# Because on Desktop
from qgis.testing import start_app
start_app()
except ImportError:
CREDENTIALS = False
PG_HOST = ''
Expand All @@ -40,6 +37,11 @@
PG_USER = ''
PG_DATABASE = ''

if CREDENTIALS:
# Because on Desktop
from qgis.testing import start_app
start_app()


def skip_test():
if os.getenv("CI"):
Expand Down

0 comments on commit 5ad27ed

Please sign in to comment.