Skip to content

Commit

Permalink
ci: Skip Lua coverage reporting, no surface area to test
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Oct 29, 2024
1 parent ef75905 commit 1c8866a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/busted.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1c8866a

Please sign in to comment.