diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2024-03-08 00:43:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-07 17:43:32 +0100 |
commit | 45277486c2c6213b7766b1da708a991cdb1f3565 (patch) | |
tree | 0467dde4d67aebb0100f055b21b70418163e8464 /services/webhook/feishu_test.go | |
parent | c1331d1f7ab60249ed2f080b24f3e32093fa708d (diff) | |
download | gitea-45277486c2c6213b7766b1da708a991cdb1f3565.tar.gz gitea-45277486c2c6213b7766b1da708a991cdb1f3565.zip |
Fix bug hidden on CI and make ci failed if tests failure (#29254)
The tests on migration tests failed but CI reports successfully
https://github.com/go-gitea/gitea/actions/runs/7364373807/job/20044685969#step:8:141
This PR will fix the bug on migration v283 and also the CI hidden
behaviour.
The reason is on the Makefile
`GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mysql.ini $(GO) test
$(GOTESTFLAGS) -tags='$(TEST_TAGS)' $(MIGRATE_TEST_PACKAGES)` will
return the error exit code.
But
`for pkg in $(shell $(GO) list
code.gitea.io/gitea/models/migrations/...); do \
GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mysql.ini $(GO) test
$(GOTESTFLAGS) -tags '$(TEST_TAGS)' $$pkg; \
done`
will not work.
This also fix #29602
Diffstat (limited to 'services/webhook/feishu_test.go')
0 files changed, 0 insertions, 0 deletions