diff --git a/binarycpython/tests/test_custom_logging.py b/binarycpython/tests/test_custom_logging.py new file mode 100644 index 0000000000000000000000000000000000000000..7554d6b56995d6e214aa1900c692d872d1810b9b --- /dev/null +++ b/binarycpython/tests/test_custom_logging.py @@ -0,0 +1,2 @@ +from binarycpython.utils.custom_logging_functions import * + diff --git a/binarycpython/tests/test_distributions.py b/binarycpython/tests/test_distributions.py new file mode 100644 index 0000000000000000000000000000000000000000..5908653a2de01b6074a3b8aa99f6120e65381b8f --- /dev/null +++ b/binarycpython/tests/test_distributions.py @@ -0,0 +1 @@ +from binarycpython.utils.distribution_functions import * diff --git a/binarycpython/tests/test_function.py b/binarycpython/tests/test_functions.py similarity index 94% rename from binarycpython/tests/test_function.py rename to binarycpython/tests/test_functions.py index 26f29f0a4ac97fd773549dafc698fcd37df3c8c7..387a1e15a85905c2cf4cb45847003ce2b4f630f4 100644 --- a/binarycpython/tests/test_function.py +++ b/binarycpython/tests/test_functions.py @@ -1,13 +1,8 @@ -from binarycpython.utils.functions import ( - get_help_super, - get_help_all, - get_help, -) +from binarycpython.utils.functions import * ############################# # Script that contains unit tests for functions from the binarycpython.utils.functions file - def test_get_help_super(): """ Function to test the get_help_super function diff --git a/binarycpython/tests/test_grid.py b/binarycpython/tests/test_grid.py new file mode 100644 index 0000000000000000000000000000000000000000..10ab09362f38e54242d1e2cf47c4b37b2263bfc3 --- /dev/null +++ b/binarycpython/tests/test_grid.py @@ -0,0 +1 @@ +from binarycpython.utils.grid import Population diff --git a/binarycpython/tests/test_hpc_functions.py b/binarycpython/tests/test_hpc_functions.py new file mode 100644 index 0000000000000000000000000000000000000000..f0c4a49152e23df2cbd35ed1d62916125ee4c2f3 --- /dev/null +++ b/binarycpython/tests/test_hpc_functions.py @@ -0,0 +1 @@ +from binarycpython.utils.hpc_functions import * diff --git a/binarycpython/tests/test_plot_functions.py b/binarycpython/tests/test_plot_functions.py new file mode 100644 index 0000000000000000000000000000000000000000..05887a43bb6e298c532385bf507a1ac244e42bbc --- /dev/null +++ b/binarycpython/tests/test_plot_functions.py @@ -0,0 +1 @@ +from binarycpython.utils.plot_functions import * diff --git a/binarycpython/tests/test_run_system_wrapper b/binarycpython/tests/test_run_system_wrapper new file mode 100644 index 0000000000000000000000000000000000000000..098968360c11ca75ef682883bd6307621fc9693e --- /dev/null +++ b/binarycpython/tests/test_run_system_wrapper @@ -0,0 +1 @@ +from binarycpython.utils.run_system_wrapper import * diff --git a/binarycpython/tests/test_spacing_functions.py b/binarycpython/tests/test_spacing_functions.py new file mode 100644 index 0000000000000000000000000000000000000000..38653968909c9a714e9e715c46810b221d0c5229 --- /dev/null +++ b/binarycpython/tests/test_spacing_functions.py @@ -0,0 +1 @@ +from binarycpython.utils.spacing_functions import * diff --git a/binarycpython/tests/test_useful_funcs.py b/binarycpython/tests/test_useful_funcs.py new file mode 100644 index 0000000000000000000000000000000000000000..13fb1c5fc13bcfb029beb754baa68dda1e07a9d3 --- /dev/null +++ b/binarycpython/tests/test_useful_funcs.py @@ -0,0 +1 @@ +from binarycpython.utils.useful_funcs import * diff --git a/setup.py b/setup.py index 4d31149f7612089975f2d16dc6507f27c0577241..4564e923fc2ad7e73cd4574150deb550667d2952 100644 --- a/setup.py +++ b/setup.py @@ -268,7 +268,7 @@ This is a python API for binary_c (versions {}) by David Hendriks, Rob Izzard an "binarycpython.tests", "binarycpython.tests.c_bindings", ], - install_requires=["numpy", "pytest", "h5py"], + install_requires=["numpy", "pytest", "h5py", "pathos", "pandas"], include_package_data=True, ext_modules=[BINARY_C_PYTHON_API_MODULE], # binary_c must be loaded classifiers=[