Skip to content

Commit

Permalink
[FR] Enable test that needed a Github file (Azure#16048)
Browse files Browse the repository at this point in the history
* enable url tests

* fix bad merge:

* see output with sample?

* Revert "see output with sample?"

This reverts commit e9ea473.

* point to right container
  • Loading branch information
maririos authored Oct 17, 2020
1 parent 4e52164 commit 8317a67
Show file tree
Hide file tree
Showing 7 changed files with 12,589 additions and 9 deletions.
6 changes: 1 addition & 5 deletions sdk/formrecognizer/Azure.AI.FormRecognizer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,8 @@ Azure Cognitive Services Form Recognizer is a cloud service that uses machine le

- Recognize Custom Forms - Recognize and extract form fields and other content from your custom forms, using models you trained with your own form types.
- Recognize Form Content - Recognize and extract tables, lines, words, and selection marks like radio buttons and check boxes in forms documents, without the need to train a model.
<<<<<<< HEAD
- Recognize Receipts - Recognize and extract common fields from US receipts, using a pre-trained receipt model.
- Recognize Business Card - Recognize and extract common fields from business cards, using a pre-trained business cards model.
=======
- Recognize Receipts - Recognize and extract common fields from receipts, using a pre-trained receipt model.
>>>>>>> locale tests
- Recognize Business Card - Recognize and extract common fields from business cards, using a pre-trained business cards model.

[Source code][formreco_client_src] | [Package (NuGet)][formreco_nuget_package] | [API reference documentation][formreco_refdocs] | [Product documentation][formreco_docs] | [Samples][formreco_samples]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ public void StartRecognizeContentFromUriThrowsForNonExistingContent()

[Test]
[TestCase(true)]
[TestCase(false, Ignore = "File not yet in Github")]
[TestCase(false)]
public async Task StartRecognizeContentWithSelectionMarks(bool useStream)
{
var client = CreateFormRecognizerClient();
Expand All @@ -400,7 +400,7 @@ public async Task StartRecognizeContentWithSelectionMarks(bool useStream)
}
else
{
var uri = FormRecognizerTestEnvironment.CreateUri(TestFile.InvoiceMultipage);
var uri = FormRecognizerTestEnvironment.CreateUri(TestFile.FormSelectionMarks);
operation = await client.StartRecognizeContentFromUriAsync(uri);
}

Expand Down Expand Up @@ -1164,7 +1164,7 @@ public void StartRecognizeBusinessCardsFromUriThrowsForNonExistingContent()

[Test]
[TestCase(true)]
[TestCase(false, Ignore ="File not on Github")]
[TestCase(false)]
public async Task StartRecognizeBusinessCardsCanParseMultipageForm(bool useStream)
{
var client = CreateFormRecognizerClient();
Expand Down
Loading

0 comments on commit 8317a67

Please sign in to comment.