diff --git a/build.py b/build.py index d8197e5..7438b93 100644 --- a/build.py +++ b/build.py @@ -39,6 +39,12 @@ def initialize(project): build.initialize_build_dir() +@task +def test(project): + test_clj(project) + test_cljs(project) + test_schema(project) + @task def test_clj(project): run("lein test", shell=True, check=True)