Skip to content
Snippets Groups Projects
Commit eedd0d25 authored by dh00601's avatar dh00601
Browse files

made file to run tests without the notebooks

parent 0b690aee
No related branches found
No related tags found
No related merge requests found
Pipeline #32401 passed
......@@ -17,7 +17,6 @@ from binarycpython.tests.test_spacing_functions import *
from binarycpython.tests.test_useful_funcs import *
from binarycpython.tests.test_grid_options_defaults import *
from binarycpython.tests.test_stellar_types import *
from test_notebooks import *
if __name__ == "__main__":
unittest.main()
#/usr/bin/env python
"""
Main file for the tests. This file imports all the combined_test functions from all files.
"""
import unittest
from binarycpython.tests.test_c_bindings import *
from binarycpython.tests.test_custom_logging import *
from binarycpython.tests.test_distributions import *
from binarycpython.tests.test_functions import *
from binarycpython.tests.test_grid import *
from binarycpython.tests.test_hpc_functions import *
from binarycpython.tests.test_plot_functions import *
from binarycpython.tests.test_run_system_wrapper import *
from binarycpython.tests.test_spacing_functions import *
from binarycpython.tests.test_useful_funcs import *
from binarycpython.tests.test_grid_options_defaults import *
from binarycpython.tests.test_stellar_types import *
from test_notebooks import *
if __name__ == "__main__":
unittest.main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment