Skip to content

Commit f8772a1

Browse files
authored
Missed profile sets (#255)
1 parent ec64e16 commit f8772a1

File tree

5 files changed

+6
-0
lines changed

5 files changed

+6
-0
lines changed

tests/integration/new_relations/test_new_relations.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,14 @@ async def test_deploy_charms(ops_test: OpsTest, charm):
5454
application_name=DATABASE_APP_NAME,
5555
num_units=1,
5656
series=CHARM_SERIES,
57+
config={"profile": "testing"},
5758
),
5859
ops_test.model.deploy(
5960
charm,
6061
application_name=ANOTHER_DATABASE_APP_NAME,
6162
num_units=2,
6263
series=CHARM_SERIES,
64+
config={"profile": "testing"},
6365
),
6466
)
6567

tests/integration/test_backups.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ async def test_backup(ops_test: OpsTest, cloud_configs: Tuple[Dict, Dict]) -> No
5252
application_name=database_app_name,
5353
num_units=2,
5454
series=CHARM_SERIES,
55+
config={"profile": "testing"},
5556
)
5657
await ops_test.model.relate(database_app_name, S3_INTEGRATOR_APP_NAME)
5758
await ops_test.model.relate(database_app_name, TLS_CERTIFICATES_APP_NAME)

tests/integration/test_charm.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ async def test_deploy(ops_test: OpsTest, charm: str):
4545
application_name=DATABASE_APP_NAME,
4646
num_units=3,
4747
series=CHARM_SERIES,
48+
config={"profile": "testing"},
4849
)
4950

5051
# Reducing the update status frequency to speed up the triggering of deferred events.

tests/integration/test_db_admin.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ async def test_landscape_scalable_bundle_db(ops_test: OpsTest, charm: str) -> No
3939
application_name=DATABASE_APP_NAME,
4040
num_units=DATABASE_UNITS,
4141
series=CHARM_SERIES,
42+
config={"profile": "testing"},
4243
)
4344

4445
# Deploy and test the Landscape Scalable bundle (using this PostgreSQL charm).

tests/integration/test_plugins.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ async def test_plugins(ops_test: OpsTest) -> None:
3636
charm,
3737
num_units=2,
3838
series=CHARM_SERIES,
39+
config={"profile": "testing"},
3940
)
4041
await ops_test.model.wait_for_idle(apps=[DATABASE_APP_NAME], status="active")
4142

0 commit comments

Comments
 (0)