mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
507 B
24 lines
507 B
#!/usr/bin/env python |
|
|
|
from __future__ import print_function |
|
|
|
import os |
|
import unittest |
|
|
|
# Python 3 moved urlopen to urllib.requests |
|
try: |
|
from urllib.request import urlopen |
|
except ImportError: |
|
from urllib import urlopen |
|
|
|
from tests_common import NewOpenCVTests |
|
|
|
|
|
basedir = os.path.abspath(os.path.dirname(__file__)) |
|
|
|
def load_tests(loader, tests, pattern): |
|
tests.addTests(loader.discover(basedir, pattern='test_*.py')) |
|
return tests |
|
|
|
if __name__ == '__main__': |
|
NewOpenCVTests.bootstrap()
|
|
|