We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2154e14 commit 2e25d43Copy full SHA for 2e25d43
tools/azure-sdk-tools/devtools_testutils/azure_testcase.py
@@ -295,7 +295,11 @@ def get_preparer_resource_name(self, prefix):
295
@staticmethod
296
def await_prepared_test(test_fn):
297
"""Synchronous wrapper for async test methods. Used to avoid making changes
298
- upstream to AbstractPreparer (which doesn't await the functions it wraps)
+ upstream to AbstractPreparer, which only awaits async tests that use preparers.
299
+ (Add @AzureTestCase.await_prepared_test decorator to async tests without preparers)
300
+
301
+ # Note: this will only be needed so long as we maintain unittest.TestCase in our
302
+ test-class inheritance chain.
303
"""
304
305
if sys.version_info < (3, 5):
0 commit comments