Add generic test task to build
This commit is contained in:
parent
424a7bee74
commit
dbffa50dab
1 changed files with 6 additions and 0 deletions
6
build.py
6
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)
|
||||
|
|
Loading…
Reference in a new issue