Add the inline macro, native build and namespaces refactorings #1

Merged
patdyn merged 9 commits from refactorings into master 2024-07-04 14:02:43 +00:00
Showing only changes of commit 85f44ea8d1 - Show all commits

View file

@ -40,18 +40,18 @@ def initialize(project):
@task @task
def test_clj(project): def test_clj():
run("lein test", shell=True, check=True) run("lein test", shell=True, check=True)
@task @task
def test_cljs(project): def test_cljs():
run("shadow-cljs compile test", shell=True, check=True) run("shadow-cljs compile test", shell=True, check=True)
run("node target/node-tests.js", shell=True, check=True) run("node target/node-tests.js", shell=True, check=True)
@task @task
def test_schema(project): def test_schema():
run("lein uberjar", shell=True, check=True) run("lein uberjar", shell=True, check=True)
run( run(
"java -jar target/uberjar/c4k-keycloak-standalone.jar " "java -jar target/uberjar/c4k-keycloak-standalone.jar "
@ -62,6 +62,11 @@ def test_schema(project):
check=True, check=True,
) )
@task
def test():
test_clj()
test_cljs()
test_schema()
@task @task
def report_frontend(project): def report_frontend(project):