Browse Source

[to #42322933]disable ocr test temporarily

master
Yingda Chen 3 years ago
parent
commit
df4f1a538d
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      tests/pipelines/test_ocr_recognition.py

+ 2
- 2
tests/pipelines/test_ocr_recognition.py View File

@@ -26,12 +26,12 @@ class OCRRecognitionTest(unittest.TestCase):
result = pipeline(input_location)
print('ocr recognition results: ', result)

@unittest.skipUnless(test_level() >= 0, 'skip test in current test level')
@unittest.skipUnless(test_level() >= 2, 'skip test in current test level')
def test_run_with_model_from_modelhub(self):
ocr_recognition = pipeline(Tasks.ocr_recognition, model=self.model_id)
self.pipeline_inference(ocr_recognition, self.test_image)

@unittest.skipUnless(test_level() >= 1, 'skip test in current test level')
@unittest.skipUnless(test_level() >= 2, 'skip test in current test level')
def test_run_with_model_from_modelhub_PILinput(self):
ocr_recognition = pipeline(Tasks.ocr_recognition, model=self.model_id)
imagePIL = PIL.Image.open(self.test_image)


Loading…
Cancel
Save