11 lines
211 B
Python
11 lines
211 B
Python
import os
|
|
import sys
|
|
import unittest
|
|
|
|
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..')))
|
|
|
|
from Mine.TestMine import TestMine
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|