6 lines
146 B
Python
6 lines
146 B
Python
|
# standard imports
|
||
|
import os
|
||
|
|
||
|
test_base_dir = os.path.dirname(os.path.realpath(__file__))
|
||
|
test_data_dir = os.path.join(test_base_dir, 'testdata')
|