- make files now re-build autosummary and deps file. - Added typer and platformdirs to deps in pyproject.toml. - Made root_is_pure = True in setup.py as platform/python specific wheels don't need to be built but the option is there should we need to. - Added an e2e test for primaite.main.run func.
9 lines
335 B
Python
9 lines
335 B
Python
from primaite.config.lay_down_config import data_manipulation_config_path
|
|
from primaite.config.training_config import main_training_config_path
|
|
from primaite.main import run
|
|
|
|
|
|
def test_primaite_main_e2e():
|
|
"""Tests the primaite.main.run function end-to-end."""
|
|
run(main_training_config_path(), data_manipulation_config_path())
|