1
0
Fork 0
mirror of https://github.com/pnx/neotest-phpunit synced 2026-06-16 03:54:55 +02:00

Fix tests for /opt neovim

This commit is contained in:
Michael Utz 2022-11-24 10:43:22 +03:00
parent ae0a335ef8
commit 992ce56868
3 changed files with 6 additions and 3 deletions

View file

@ -13,8 +13,8 @@ errors=$(sed 's/\x1b\[[0-9;]*m//g' "${tempfile}" | awk '/(Errors|Failed) :/ {pri
rm "${tempfile}"
if [[ -n $errors ]]; then
echo "Tests failed"
exit 1
echo "Tests failed"
exit 1
fi
exit 0

View file

@ -1,3 +1,6 @@
set rtp+=.
set rtp+=../plenary.nvim
packadd! plenary.nvim
packadd! neotest
packadd! neotest-plenary
runtime! plugin/plenary.vim

View file

@ -395,4 +395,4 @@ describe("get_test_results", function()
assert.are.same(utils.get_test_results(xml_output, output_file), expected)
end)
end)
-- vim: fdm=indent fdl=1
-- vim: fdm=indent fdl=2