git-subtree-dir: LinearAlgebra git-subtree-mainline: b87c4df0e3c2ee2aaf58bb8446d4b970d6fcb433 git-subtree-split: b60b248f7529a56244681bce0b204443abceacb2
14 lines
287 B
Python
14 lines
287 B
Python
import sys
|
|
from pathlib import Path
|
|
# Add the project root to sys.path
|
|
sys.path.append(str(Path(__file__).resolve().parent.parent))
|
|
|
|
import unittest
|
|
|
|
class AngleTest(unittest.TestCase):
|
|
def test_one(self):
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main() |