mirror of
https://github.com/mikegerber/ocrd_calamari.git
synced 2025-07-13 03:59:54 +02:00
11 lines
245 B
Python
11 lines
245 B
Python
|
# pylint: disable=unused-import
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
from unittest import TestCase, skip, main # pylint: disable=unused-import
|
||
|
|
||
|
from test.assets import assets
|
||
|
|
||
|
PWD = os.path.dirname(os.path.realpath(__file__))
|
||
|
sys.path.append(PWD + '/../ocrd')
|