Skip to content

Commit

Permalink
temporarily skip aad tests (Azure#24708)
Browse files Browse the repository at this point in the history
  • Loading branch information
catalinaperalta authored and sarkar-rajarshi committed Jun 9, 2022
1 parent c3048bd commit fc969ef
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
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

0 comments on commit fc969ef

Please sign in to comment.