9 lines
112 B
Python
9 lines
112 B
Python
import sys
|
|
|
|
sys.path.insert(0, 'src')
|
|
sys.path.insert(2, 'tests/libs')
|
|
|
|
import unittest
|
|
|
|
unittest.main('tests')
|