Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Topic/add test profile #36

Merged
merged 4 commits into from
Oct 6, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,17 @@
:doc/format :markdown
:doc "Documentation forthcoming"}}
:profiles {
:uber {
:aot :all}
:test {
:plugins [
[jonase/eastwood "0.2.3" :exclusions [org.clojure/clojure]]
[lein-kibit "0.1.2" :exclusions [org.clojure/clojure]]]
:test-selectors {
:default :unit
:unit :unit
:system :system
:integration :integration}}
:dev {
:source-paths ["dev-resources/src"]
:repl-options {:init-ns meson.debug}
Expand Down
11 changes: 4 additions & 7 deletions resources/make/code.mk
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,15 @@ clean:
@rm -rf target
@rm -f pom.xml

deps-tree:
mvn-tree:
@lein pom
@mvn dependency:tree

deps-tree:
@lein deps :tree

loc:
@find src -name "*.clj" -exec cat {} \;|wc -l

check:
@lein with-profile +testing,-dev test

run:
-@lein trampoline run

test-auth-server:
@cd test/support/auth-server && lein with-profile +dev run
12 changes: 12 additions & 0 deletions resources/make/test.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
lint:
@lein with-profile +test kibit
@lein with-profile +test eastwood "{:namespaces [:source-paths]}"

lint-unused:
@lein with-profile +test eastwood "{:linters [:unused-fn-args :unused-locals :unused-namespaces :unused-private-vars :wrong-ns-form] :namespaces [:source-paths]}"

lint-ns:
@lein with-profile +test eastwood "{:linters [:unused-namespaces :wrong-ns-form] :namespaces [:source-paths]}"

check: lint
@lein with-profile +test,-dev test :all