Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MISC] Missed profile sets #255

Merged
merged 1 commit into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/integration/new_relations/test_new_relations.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,14 @@ async def test_deploy_charms(ops_test: OpsTest, charm):
application_name=DATABASE_APP_NAME,
num_units=1,
series=CHARM_SERIES,
config={"profile": "testing"},
),
ops_test.model.deploy(
charm,
application_name=ANOTHER_DATABASE_APP_NAME,
num_units=2,
series=CHARM_SERIES,
config={"profile": "testing"},
),
)

Expand Down
1 change: 1 addition & 0 deletions tests/integration/test_backups.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ async def test_backup(ops_test: OpsTest, cloud_configs: Tuple[Dict, Dict]) -> No
application_name=database_app_name,
num_units=2,
series=CHARM_SERIES,
config={"profile": "testing"},
)
await ops_test.model.relate(database_app_name, S3_INTEGRATOR_APP_NAME)
await ops_test.model.relate(database_app_name, TLS_CERTIFICATES_APP_NAME)
Expand Down
1 change: 1 addition & 0 deletions tests/integration/test_charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ async def test_deploy(ops_test: OpsTest, charm: str):
application_name=DATABASE_APP_NAME,
num_units=3,
series=CHARM_SERIES,
config={"profile": "testing"},
)

# Reducing the update status frequency to speed up the triggering of deferred events.
Expand Down
1 change: 1 addition & 0 deletions tests/integration/test_db_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ async def test_landscape_scalable_bundle_db(ops_test: OpsTest, charm: str) -> No
application_name=DATABASE_APP_NAME,
num_units=DATABASE_UNITS,
series=CHARM_SERIES,
config={"profile": "testing"},
)

# Deploy and test the Landscape Scalable bundle (using this PostgreSQL charm).
Expand Down
1 change: 1 addition & 0 deletions tests/integration/test_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ async def test_plugins(ops_test: OpsTest) -> None:
charm,
num_units=2,
series=CHARM_SERIES,
config={"profile": "testing"},
)
await ops_test.model.wait_for_idle(apps=[DATABASE_APP_NAME], status="active")

Expand Down