From 19d85d7d004a3e536aa34d68833d4c22fe04c84a Mon Sep 17 00:00:00 2001 From: Llewellyn Falco Date: Mon, 13 Dec 2021 11:29:37 -0700 Subject: [PATCH] e added run_tests.sh Co-Authored-By: Tony Trung Thanh Vo <9420482+tonytvo@users.noreply.github.com> --- .github/workflows/test.yml | 4 ++-- run_tests.bat | 2 +- run_tests.sh | 3 +++ 3 files changed, 6 insertions(+), 3 deletions(-) create mode 100755 run_tests.sh diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a5b2e89..e58112a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,5 +20,5 @@ jobs: luarocks install busted - name: test - run: | - busted -o utfTerminal + run: ./run_tests.sh + diff --git a/run_tests.bat b/run_tests.bat index 2617224..3ae5d83 100644 --- a/run_tests.bat +++ b/run_tests.bat @@ -1 +1 @@ -busted +busted -o utfTerminal diff --git a/run_tests.sh b/run_tests.sh new file mode 100755 index 0000000..4f32cf8 --- /dev/null +++ b/run_tests.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +sh -c "$(cat run_tests.bat)" \ No newline at end of file