From 6d4d8a89ed4e311d5e1ceb83dc33e8dbbc48302e Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 8 Jun 2020 03:28:37 -0400 Subject: [PATCH] fix: correct test logging output --- tests.mk | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests.mk b/tests.mk index df18116da..e7e5c8a96 100644 --- a/tests.mk +++ b/tests.mk @@ -269,27 +269,27 @@ test-ci: test-ci-0: @mkdir -p test-results/bats - @cd tests/unit && echo "executing tests: $(shell cd tests/unit ; ls *.bats | xargs)" + @cd tests/unit && echo "executing tests: $(shell cd tests/unit ; ls 10*.bats | xargs)" cd tests/unit && bats --formatter bats-format-junit -e -T -o ../../test-results/bats $(shell cd tests/unit ; ls 10*.bats | xargs) test-ci-1: @mkdir -p test-results/bats - @cd tests/unit && echo "executing tests: $(shell cd tests/unit ; ls *.bats | xargs)" + @cd tests/unit && echo "executing tests: $(shell cd tests/unit ; ls 20*.bats | xargs)" cd tests/unit && bats --formatter bats-format-junit -e -T -o ../../test-results/bats $(shell cd tests/unit ; ls 20*.bats | xargs) test-ci-2: @mkdir -p test-results/bats - @cd tests/unit && echo "executing tests: $(shell cd tests/unit ; ls *.bats | xargs)" + @cd tests/unit && echo "executing tests: $(shell cd tests/unit ; ls 20*.bats | xargs)" cd tests/unit && bats --formatter bats-format-junit -e -T -o ../../test-results/bats $(shell cd tests/unit ; ls 30*.bats | xargs) test-ci-3: @mkdir -p test-results/bats - @cd tests/unit && echo "executing tests: $(shell cd tests/unit ; ls *.bats | xargs)" + @cd tests/unit && echo "executing tests: $(shell cd tests/unit ; ls 40*.bats | xargs)" cd tests/unit && bats --formatter bats-format-junit -e -T -o ../../test-results/bats $(shell cd tests/unit ; ls 40*.bats | xargs) test-ci-4: @mkdir -p test-results/bats - @cd tests/unit && echo "executing tests: $(shell cd tests/unit ; ls *.bats | xargs)" + @cd tests/unit && echo "executing tests: $(shell cd tests/unit ; ls 50*.bats | xargs)" cd tests/unit && bats --formatter bats-format-junit -e -T -o ../../test-results/bats $(shell cd tests/unit ; ls 50*.bats | xargs)