Add generic test task to build

This commit is contained in:
bom 2024-02-23 16:11:32 +01:00
parent 424a7bee74
commit dbffa50dab

View file

@ -39,6 +39,12 @@ def initialize(project):
build.initialize_build_dir() build.initialize_build_dir()
@task
def test(project):
test_clj(project)
test_cljs(project)
test_schema(project)
@task @task
def test_clj(project): def test_clj(project):
run("lein test", shell=True, check=True) run("lein test", shell=True, check=True)