Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ def test_polling_interval(self, formrecognizer_test_endpoint, formrecognizer_tes
poller2.wait()
assert poller2._polling_method._timeout == 7 # goes back to client default

@pytest.mark.skip()
@pytest.mark.live_test_only
def test_active_directory_auth(self):
token = self.generate_oauth_token()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ async def test_polling_interval(self, formrecognizer_test_endpoint, formrecogniz
await poller2.wait()
assert poller2._polling_method._timeout == 7 # goes back to client default

@pytest.mark.skip()
@pytest.mark.live_test_only
@FormRecognizerPreparer()
async def test_active_directory_auth_async(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class TestManagement(FormRecognizerTest):
def teardown(self):
self.sleep(4)

@pytest.mark.skip()
@pytest.mark.live_test_only
@FormRecognizerPreparer()
def test_active_directory_auth(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ class TestManagementAsync(AsyncFormRecognizerTest):
def teardown(self):
self.sleep(4)

@pytest.mark.skip()
@pytest.mark.live_test_only
@FormRecognizerPreparer()
async def test_active_directory_auth_async(self):
Expand Down