This is an automated email from the ASF dual-hosted git repository. ronny pushed a commit to branch win/build-report in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 46c37f6993b251745a3124687fe99a2e800f0d8e Author: Ronny Berndt <[email protected]> AuthorDate: Wed Jan 18 08:52:40 2023 +0100 Adding build-report makefile target on Windows Backporting the `build-report` target from the *nix makefile to the Windows pendant. --- Makefile.win | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile.win b/Makefile.win index a897554e7..13b83f781 100644 --- a/Makefile.win +++ b/Makefile.win @@ -250,6 +250,11 @@ elixir-check-formatted: elixir-init elixir-credo: elixir-init @mix credo +.PHONY: build-report +# target: build-report - Generate a build report +build-report: + @$(PYTHON) build-aux/show-test-results.py --suites=10 --tests=10 > test-results.log + .PHONY: check-qs # target: check-qs - Run query server tests (ruby and rspec required!) check-qs:
