1
0
python-oci-sdk/pytest-740.patch

23 lines
912 B
Diff
Raw Normal View History

Accepting request 1186161 from home:glaubitz:branches:devel:languages:python - Update to version 2.129.1 * Support for calling Oracle Cloud Infrastructure services in the `ap-singapore-2` region * Support for additional parameters in list and delete operations in the File Storage service * Support for host capacity planning to analyze disabled and deleted resources in the Operations Insights service * Support for title and description updates in the Capacity Management service * Support for listing parameters for migrations in the Database Migration service * Support for Oracle exadata database service on exascale Infrastructure (ExaDB-XS) in the Database service - from version 2.129.0 * Support for MySQL to MySQL homogeneous migrations in the Database Migration service * Support for manual cross-region backups in the MySQL Heatwave service * The models AdvisorSettings, Agent, AgentCollection, AgentImageCollection, AgentImageSummary, AgentSummary, AwsS3DataTransferMediumDetails, AwsS3Details, ChangeAgentCompartmentDetails, ConnectDescriptor, CreateAdvisorSettings, CreateAwsS3Details, CreateConnectDescriptor, CreateDataPumpSettings, CreateDataTransferMediumDetails, CreateDatabaseLinkDetails, CreateDumpTransferDetails, CreateGoldenGateDetails, CreateGoldenGateHub, CreateGoldenGateServiceDetails, CreateGoldenGateServiceDetails, CreatePrivateEndpoint, CreateSshDetails, CreateVaultDetails, DataPumpSettings, DataTransferMediumDetails, DataTransferMediumDetailsV2, DatabaseCredentials, DatabaseLinkDetails, DatabaseObject, DbLinkDataTransferMediumDetails, DumpTransferDetails, GoldenGateDetails, GoldenGateHub, GoldenGateServiceDetails, GoldenGateSettings, MigrationObjectSummary, NfsDataTransferMediumDetails, ObjectStorageDataTransferMediumDetails, PrivateEndpointDetails, SshDetails, UpdateAdvisorSettings, UpdateAgentDetails, UpdateAwsS3Details, UpdateConnectDescriptor, UpdateDataPumpSettings, UpdateDataTransferMediumDetails, UpdateDatabaseLinkDetails, UpdateDumpTransferDetails, UpdateGoldenGateDetails, UpdateGoldenGateHub, UpdateGoldenGateServiceDetails, UpdateGoldenGateSettings, UpdatePrivateEndpoint, UpdateSshDetails, UpdateVaultDetails, VaultDetails were removed in the Database Migration service * The operations change_agent_compartment, delete_agent, get_agent, list_agent_images, list_agents, and update_agent were removed in the Database Migration service * The composite operations delete_agent_and_wait_for_state and update_agent_and_wait_for_state OBS-URL: https://build.opensuse.org/request/show/1186161 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-oci-sdk?expand=0&rev=155
2024-07-09 08:32:14 +02:00
Index: oci-python-sdk-2.109.0/tests/conftest.py
===================================================================
--- oci-python-sdk-2.109.0.orig/tests/conftest.py
+++ oci-python-sdk-2.109.0/tests/conftest.py
@@ -13,7 +13,7 @@ from . import test_config_container
def pytest_addoption(parser):
- parser.addoption("--config-file", action="store", help="location of the config file",
+ parser.addoption("--config", action="store", help="location of the config file",
default=get_resource_path('config'))
parser.addoption("--config-profile", action="store",
help="profile to use from the config file",
@@ -30,7 +30,7 @@ def pytest_configure(config):
@pytest.fixture(scope="session")
def config_file(request):
- return request.config.getoption("--config-file")
+ return request.config.getoption("--config")
@pytest.fixture(scope="session")