From 02d9c5352039d3b90f75dc9ac6ed3bccd9e71be6 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Fri, 19 Jun 2020 23:53:43 -0400 Subject: [PATCH] tests: fix syntax --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 747da1b85..5e93ec928 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -85,8 +85,8 @@ jobs: shell: /bin/bash command: | mkdir -p test-results/bats - cd tests/unit && echo "executing tests: $(shell cd tests/unit ; ls << parameters.index >>*.bats | xargs)" - cd tests/unit && bats --formatter bats-format-junit -e -T -o ../../test-results/bats $(shell cd tests/unit ; ls << parameters.index >>*.bats | xargs) + cd tests/unit && echo "executing tests: $(cd tests/unit ; ls << parameters.index >>*.bats | xargs)" + cd tests/unit && bats --formatter bats-format-junit -e -T -o ../../test-results/bats $(cd tests/unit ; ls << parameters.index >>*.bats | xargs) no_output_timeout: 60m - store_artifacts: path: ./test-results