Compare commits

..

No commits in common. "a96cba8cb1446cfb1a42f452cf8f4dc8a03077cd" and "fcf6d7783e41baf320ff7ac48b1fc1bc7e753c0d" have entirely different histories.

2 changed files with 4 additions and 10 deletions

View file

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

View file

@ -8,8 +8,7 @@
[dda.c4k-common.postgres :as postgres]
[dda.c4k-nextcloud.nextcloud :as nextcloud]
[dda.c4k-nextcloud.backup :as backup]
[dda.c4k-common.monitoring :as mon]
[dda.c4k-common.namespace :as ns]))
[dda.c4k-common.monitoring :as mon]))
(def default-storage-class :local-path)