Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[formrecognizer] unskip AAD tests/samples #18893

Merged
merged 1 commit into from
May 25, 2021
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
4 changes: 0 additions & 4 deletions scripts/devops_tasks/test_run_samples.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,6 @@
"release_phone_number_sample_async.py",
"release_phone_number_sample.py"
],
"azure-ai-formrecognizer": [
"sample_authentication.py",
"sample_authentication_async.py"
]
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ class TestManagementAsync(AsyncFormRecognizerTest):

@FormRecognizerPreparer()
@pytest.mark.live_test_only
@pytest.mark.skip("AAD is not deployed yet")
async def test_active_directory_auth_async(self):
token = self.generate_oauth_token()
endpoint = self.get_oauth_endpoint()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ def test_polling_interval(self, formrecognizer_test_endpoint, formrecognizer_tes
self.assertEqual(poller2._polling_method._timeout, 7) # goes back to client default

@pytest.mark.live_test_only
@pytest.mark.skip("AAD is not deployed yet")
def test_active_directory_auth(self):
token = self.generate_oauth_token()
endpoint = self.get_oauth_endpoint()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ async def test_polling_interval(self, formrecognizer_test_endpoint, formrecogniz
self.assertEqual(poller2._polling_method._timeout, 7) # goes back to client default

@pytest.mark.live_test_only
@pytest.mark.skip("AAD is not deployed yet")
@FormRecognizerPreparer()
async def test_active_directory_auth_async(self):
token = self.generate_oauth_token()
Expand Down