-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
run black on devtools_testutils (#16264)
cleans up the code in the `devtools_testutils` folder
- Loading branch information
1 parent
a78be2e
commit ce3bfd5
Showing
12 changed files
with
492 additions
and
337 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,32 @@ | ||
from .mgmt_testcase import (AzureMgmtTestCase, AzureMgmtPreparer) | ||
from .mgmt_testcase import AzureMgmtTestCase, AzureMgmtPreparer | ||
from .azure_testcase import AzureTestCase, is_live, get_region_override | ||
from .resource_testcase import (FakeResource, ResourceGroupPreparer, RandomNameResourceGroupPreparer, CachedResourceGroupPreparer) | ||
from .storage_testcase import FakeStorageAccount, StorageAccountPreparer, CachedStorageAccountPreparer | ||
from .resource_testcase import ( | ||
FakeResource, | ||
ResourceGroupPreparer, | ||
RandomNameResourceGroupPreparer, | ||
CachedResourceGroupPreparer, | ||
) | ||
from .storage_testcase import ( | ||
FakeStorageAccount, | ||
StorageAccountPreparer, | ||
CachedStorageAccountPreparer, | ||
) | ||
from .keyvault_preparer import KeyVaultPreparer | ||
from .powershell_preparer import PowerShellPreparer | ||
|
||
__all__ = [ | ||
'AzureMgmtTestCase', 'AzureMgmtPreparer', | ||
'FakeResource', 'ResourceGroupPreparer', | ||
'StorageAccountPreparer', 'CachedStorageAccountPreparer', | ||
'FakeStorageAccount', | ||
'AzureTestCase', 'is_live', 'get_region_override', | ||
'KeyVaultPreparer', 'RandomNameResourceGroupPreparer', | ||
'CachedResourceGroupPreparer', 'PowerShellPreparer' | ||
"AzureMgmtTestCase", | ||
"AzureMgmtPreparer", | ||
"FakeResource", | ||
"ResourceGroupPreparer", | ||
"StorageAccountPreparer", | ||
"CachedStorageAccountPreparer", | ||
"FakeStorageAccount", | ||
"AzureTestCase", | ||
"is_live", | ||
"get_region_override", | ||
"KeyVaultPreparer", | ||
"RandomNameResourceGroupPreparer", | ||
"CachedResourceGroupPreparer", | ||
"PowerShellPreparer", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.