Skip to content

Commit

Permalink
Enable debug on failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
swainn committed Sep 23, 2024
1 parent b3a59af commit 8fe69e1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/e2e_tests/geoserver_engine_e2e_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -989,10 +989,12 @@ def test_link_and_add_table(self):
# Execute
response = self.geoserver_engine.create_layer_from_postgis_store(
store_id=store_id,
table=self.pg_table_name
table=self.pg_table_name,
debug=True
)

# Check for success response
print(response)
self.assertTrue(response['success'])

# TEST list_stores
Expand Down Expand Up @@ -1136,8 +1138,10 @@ def test_create_sql_view_layer(self):
# Create layer from postgis store
response = self.geoserver_engine.create_layer_from_postgis_store(
store_id=store_id,
table=self.pg_table_name
table=self.pg_table_name,
debug=True
)
print(response)
self.assertTrue(response['success'])

# Pause to let GeoServer catch up before continuing
Expand Down

0 comments on commit 8fe69e1

Please sign in to comment.