From 1c8866a2901861ef40d945ffbda8df6ada748209 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Tue, 29 Oct 2024 14:00:34 +0300 Subject: [PATCH] ci: Skip Lua coverage reporting, no surface area to test --- .github/workflows/busted.yml | 9 +-------- Makefile.am | 2 +- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/busted.yml b/.github/workflows/busted.yml index 7ff7a55..70b0242 100644 --- a/.github/workflows/busted.yml +++ b/.github/workflows/busted.yml @@ -33,15 +33,8 @@ jobs: run: | luarocks install --only-deps -- decasify-dev-1.rockspec luarocks install busted - luarocks install luacov-coveralls - name: Build and install Lua module locally run: | luarocks make - name: Run busted tests - run: busted -c -v - - name: Report test coverage - if: success() - continue-on-error: true - run: luacov-coveralls -i cldr -e .luarocks - env: - COVERALLS_REPO_TOKEN: ${{ github.token }} + run: busted -v diff --git a/Makefile.am b/Makefile.am index f88dc46..ae87af7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -100,7 +100,7 @@ busted: install-luarock set -f; IFS=';' packagepath=($${LUA_PATH}) packagecpath=($${LUA_CPATH}) - $(BUSTED) -c -v --lpath="$${packagepath[*]};;" --cpath="$${packagecpath[*]};;" $(BUSTEDFLAGS) . + $(BUSTED) -v --lpath="$${packagepath[*]};;" --cpath="$${packagecpath[*]};;" $(BUSTEDFLAGS) . pytest: $(UV) venv