diff --git a/test/.gitignore b/test/.gitignore index 522c09bcc..169461eaf 100644 --- a/test/.gitignore +++ b/test/.gitignore @@ -1,4 +1,3 @@ /local/ /local-init/ /.environment.sh -/dyn-bats/*.bats diff --git a/test/bats.mk b/test/bats.mk index e25156ed9..2e2621f3e 100644 --- a/test/bats.mk +++ b/test/bats.mk @@ -95,7 +95,6 @@ bats-fixture: bats-check-requirements bats-update-tools ## Build fixture for fu bats-clean: ## Remove functional test environment @$(RM) $(TEST_DIR)/local $(WIN_IGNORE_ERR) @$(RM) $(LOCAL_INIT_DIR) $(WIN_IGNORE_ERR) - @$(RM) $(TEST_DIR)/dyn-bats/*.bats $(WIN_IGNORE_ERR) @$(RM) test/.environment.sh $(WIN_IGNORE_ERR) @$(RM) test/coverage/* $(WIN_IGNORE_ERR) diff --git a/test/run-tests b/test/run-tests index 957eb663b..e7609188c 100755 --- a/test/run-tests +++ b/test/run-tests @@ -37,10 +37,10 @@ if [[ $# -ge 1 ]]; then --print-output-on-failure \ "$@" else - echo "test files: $TEST_DIR/bats $TEST_DIR/dyn-bats" + echo "test files: $TEST_DIR/bats" "$TEST_DIR/lib/bats-core/bin/bats" \ --jobs 1 \ --timing \ --print-output-on-failure \ - "$TEST_DIR/bats" "$TEST_DIR/dyn-bats" + "$TEST_DIR/bats" fi