diff options
author | Jay Doane <jaydoane@apache.org> | 2021-11-01 14:04:22 -0700 |
---|---|---|
committer | Jay Doane <jay.s.doane@gmail.com> | 2022-01-20 12:24:06 -0800 |
commit | 63a9d458aec57ba11fdc0bf14d1f01e17151b12c (patch) | |
tree | 167e1016fab54d2b026f4765b039fe2650455984 /Makefile | |
parent | 3abcc42cd88d7c127e6362c3a29c946dfa08ed33 (diff) | |
download | couchdb-63a9d458aec57ba11fdc0bf14d1f01e17151b12c.tar.gz |
Enable exunit in check target
Also `export COUCHDB_TEST_ADMIN_PARTY_OVERRIDE=1` so couch will start.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -152,6 +152,7 @@ escriptize: couch .PHONY: check # target: check - Test everything check: all python-black + @$(MAKE) exunit @$(MAKE) eunit @$(MAKE) mango-test @$(MAKE) elixir-suite @@ -183,6 +184,7 @@ exunit: export MIX_ENV=test exunit: export ERL_LIBS = $(shell pwd)/src exunit: export ERL_AFLAGS = -config $(shell pwd)/rel/files/eunit.config exunit: export COUCHDB_QUERY_SERVER_JAVASCRIPT = $(shell pwd)/bin/couchjs $(shell pwd)/share/server/main.js +exunit: export COUCHDB_TEST_ADMIN_PARTY_OVERRIDE=1 exunit: couch elixir-init setup-eunit elixir-check-formatted elixir-credo @mix test --trace $(EXUNIT_OPTS) |