CI: remove obsolete reference to directory dyn-bats (#3600)

This commit is contained in:
mmetc 2025-04-30 23:23:49 +02:00 committed by GitHub
parent 8949309223
commit 0a9e6ddd4f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2 additions and 4 deletions

1
test/.gitignore vendored
View file

@ -1,4 +1,3 @@
/local/
/local-init/
/.environment.sh
/dyn-bats/*.bats

View file

@ -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)

View file

@ -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