mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-30 23:03:45 +01:00
16 lines
268 B
Bash
Executable File
16 lines
268 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
which luarocks && eval $(luarocks path)
|
|
which luarocks-5.3 && eval $(luarocks-5.3 path)
|
|
|
|
sh tests/luacheck/test.sh || true
|
|
|
|
# Run unit tests
|
|
find ./ -name 'unit-test.lua' | while read TEST; do
|
|
(
|
|
cd $(dirname $TEST)
|
|
busted unit-test.lua
|
|
)
|
|
done
|