Skip to content

Commit

Permalink
Disable landing_page test
Browse files Browse the repository at this point in the history
  • Loading branch information
dmarteau committed Aug 2, 2022
1 parent fa19af7 commit 8da3bc5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
12 changes: 7 additions & 5 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,18 @@ stages:
tags:
- infrav3-dind

tests:release:
extends: .tests
variables:
QGIS_FLAVOR: release

tests:ltr:
extends: .tests
variables:
QGIS_FLAVOR: ltr

tests:release:
extends: .tests
needs:
- "tests:ltr"
variables:
QGIS_FLAVOR: release

#---------------
# Build
#---------------
Expand Down
4 changes: 3 additions & 1 deletion tests/unittests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ class Tests(HTTPTestCase):

# XXX This test takes an insane amount with QGIS >= 3.26+
# of time on gitlab CI, this need to be investigated
def xxx_test_landing_page(self):
# See https://github.com/qgis/QGIS/pull/49476
@pytest.mark.skip(reason="Wait to fix project loading in landing page")
def test_landing_page(self):
""" Test landing_page
"""
rv = self.client.get( '', path="/ows/catalog/" )
Expand Down

0 comments on commit 8da3bc5

Please sign in to comment.