import sys
import unittest
import os
sys.path.append(
os.path.dirname(
os.path.dirname(
os.path.realpath(__file__)) +
"/../"))
sys.path.append(
os.path.dirname(os.path.dirname(os.path.realpath(__file__)) + "/../../"))
from api.utils.test import CLITestBase
import unittest
tests = unittest.TestLoader().discover('tests', pattern='test_*.py')
unittest.TextTestRunner(verbosity=2).run(tests)
# import the package
import antigravity
$ cd new_project
$ python -m unittest test.test_antigravity