diff options
author | zeripath <art27@cantab.net> | 2022-09-05 07:04:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-05 14:04:18 +0800 |
commit | 8080e23c9bc4e37102f63bec36603a540ff6ea9b (patch) | |
tree | 7baf3246a3f00480d396ef2821c8167f9ae195af /tests/integration/compare_test.go | |
parent | 0232601734fffd13aab3930ebd2b6911eb913315 (diff) | |
download | gitea-8080e23c9bc4e37102f63bec36603a540ff6ea9b.tar.gz gitea-8080e23c9bc4e37102f63bec36603a540ff6ea9b.zip |
Move go-licenses to generate and separate generate into a frontend and backend component (#21061)
The `go-licenses` make task introduced in #21034 is being run on make vendor
and occasionally causes an empty go-licenses file if the vendors need to
change. This should be moved to the generate task as it is a generated file.
Now because of this change we also need to split generation into two separate
steps:
1. `generate-backend`
2. `generate-frontend`
In the future it would probably be useful to make `generate-swagger` part of `generate-frontend` but it's not tolerated with our .drone.yml
Ref #21034
Signed-off-by: Andrew Thornton <art27@cantab.net>
Signed-off-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: delvh <dev.lh@web.de>
Diffstat (limited to 'tests/integration/compare_test.go')
-rw-r--r-- | tests/integration/compare_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/integration/compare_test.go b/tests/integration/compare_test.go index 7642109dd9..134ae520a8 100644 --- a/tests/integration/compare_test.go +++ b/tests/integration/compare_test.go @@ -10,6 +10,7 @@ import ( "testing" "code.gitea.io/gitea/tests" + "github.com/stretchr/testify/assert" ) |