diff --git a/.github/workflows/gnoland.yml b/.github/workflows/gnoland.yml index 2b38f254a13..95cb5fa8ce0 100644 --- a/.github/workflows/gnoland.yml +++ b/.github/workflows/gnoland.yml @@ -60,7 +60,9 @@ jobs: - _test.gnoland - _test.gnokey - _test.pkgs - #- _test.gnoweb # this test should be rewritten to run an inmemory localnode + # XXX: test broken, should be rewritten to run an inmemory localnode + # Re-add to makefile when fixed. Tracked here: https://github.com/gnolang/gno/issues/1222 + #- _test.gnoweb runs-on: ubuntu-latest timeout-minutes: 15 steps: @@ -76,7 +78,7 @@ jobs: export LOG_DIR="${{ runner.temp }}/logs/test-${{ matrix.goversion }}-gnoland" make ${{ matrix.args }} - name: Upload Test Log - if: always() + if: always() uses: actions/upload-artifact@v3 with: name: logs-test-gnoland-go${{ matrix.goversion }} @@ -99,7 +101,7 @@ jobs: uses: codecov/codecov-action@v3 with: directory: ${{ runner.temp }}/coverage - token: ${{ secrets.CODECOV_TOKEN }} + token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: ${{ github.repository == 'gnolang/gno' }} docker-integration: diff --git a/gno.land/Makefile b/gno.land/Makefile index e794bb58174..1fd1aaa1f78 100644 --- a/gno.land/Makefile +++ b/gno.land/Makefile @@ -43,7 +43,9 @@ fmt: ######################################## # Test suite .PHONY: test -test: _test.gnoland _test.gnoweb _test.gnokey _test.pkgs +test: _test.gnoland _test.gnokey _test.pkgs +# XXX: _test.gnoweb is currently disabled. If fixed, re-enable here and in CI. +# https://github.com/gnolang/gno/issues/1222 GOTEST_FLAGS ?= -v -p 1 -timeout=30m