diff --git a/binarycpython/utils/population_extensions/evolution_functions.py b/binarycpython/utils/population_extensions/evolution_functions.py index 2b301d83f68cc57fac6ad576d4d54378963b0bb4..872d3861910057ae150dd9de17e0e02d49529b26 100644 --- a/binarycpython/utils/population_extensions/evolution_functions.py +++ b/binarycpython/utils/population_extensions/evolution_functions.py @@ -543,7 +543,7 @@ class evolution_functions: self._monte_carlo_sampling_check_mass_threshold(system_dict) # Check based on custom threshold, which uses the result_queue - # TODO: process the result_queue and pass this. HOw we do this (get only one, or get until the result queue is empty again) + # TODO: process the result_queue and pass this. How we do this (get only one, or get until the result queue is empty again) self._monte_carlo_sampling_check_custom_threshold(result_queue) ###### @@ -826,7 +826,15 @@ class evolution_functions: # If we're doing monte-carlo sampling with a custom if system_result is not None: # TODO: fix that this is only handle if user-defined function is given - # result_queue.put(system_result) + # TODO: perhaps we should always put things in the system_result dict if the parse_function gives back something + # result_queue.put( + # { + # "system_result": system_result, + # "system_number": system_number, + # "full_system_dict": full_system_dict, + # } + # ) + raise NotImplementedError("Functionality not implemented") end_runtime_binary_c = time.time() diff --git a/pyproject.toml b/pyproject.toml index 9457f5fa12938d80b75bd29f56cb74c12afaa2fc..478ef7e5d2f25e1adab06f75b5a0d8256e30fb31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,4 @@ max-line-length = 89 max-complexity = 18 [tool.coverage] - -omit = - binarycpython/tests/* - */tests/* +omit = ["binarycpython/tests/*", "*/tests/*"]