diff options
author | Juanjo Rodriguez <juanjo@apache.org> | 2020-03-19 23:37:04 +0100 |
---|---|---|
committer | Juanjo Rodriguez <jjrodrig@gmail.com> | 2020-04-01 23:52:14 +0200 |
commit | fb9d40442854aa8bd5c4ed9c7448eaaad456bd87 (patch) | |
tree | c80fabe2d5fee81206a0846e7b07a46443d6b1a0 /Makefile.win | |
parent | f3a3312424c0ca780f7c7a49d1adc871996735db (diff) | |
download | couchdb-fb9d40442854aa8bd5c4ed9c7448eaaad456bd87.tar.gz |
Update Makefile.win to Include locad configs and clean configs in devclean
Diffstat (limited to 'Makefile.win')
-rw-r--r-- | Makefile.win | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.win b/Makefile.win index 30ebe0ee3..92c60bbbb 100644 --- a/Makefile.win +++ b/Makefile.win @@ -200,7 +200,9 @@ python-black-update: .venv/bin/black elixir: export MIX_ENV=integration elixir: export COUCHDB_TEST_ADMIN_PARTY_OVERRIDE=1 elixir: elixir-init elixir-check-formatted elixir-credo devclean - @dev\run $(TEST_OPTS) -a adm:pass -n 1 --enable-erlang-views --no-eval 'mix test --trace --exclude without_quorum_test --exclude with_quorum_test $(EXUNIT_OPTS)' + @dev\run $(TEST_OPTS) -a adm:pass -n 1 --enable-erlang-views \ + --locald-config test/elixir/test/config/test-config.ini \ + --no-eval 'mix test --trace --exclude without_quorum_test --exclude with_quorum_test $(EXUNIT_OPTS)' .PHONY: elixir-init elixir-init: MIX_ENV=test @@ -405,6 +407,9 @@ devclean: -@rmdir /s/q dev\lib\node1\data -@rmdir /s/q dev\lib\node2\data -@rmdir /s/q dev\lib\node3\data + -@rmdir /s/q dev\lib\node1\etc + -@rmdir /s/q dev\lib\node2\etc + -@rmdir /s/q dev\lib\node3\etc ################################################################################ |