fix: CI: make test-unit-rest actually be the rest of the tests

This commit is contained in:
Aayush Rajasekaran 2023-08-08 14:13:44 -04:00
parent 87458af858
commit 0c34deb884
2 changed files with 3 additions and 1 deletions

View File

@ -1043,7 +1043,7 @@ workflows:
requires: requires:
- build - build
suite: utest-unit-rest suite: utest-unit-rest
target: "./api/... ./blockstore/... ./build/... ./chain/... ./cli/... ./cmd/... ./conformance/... ./extern/... ./gateway/... ./journal/... ./lib/... ./markets/... ./node/... ./paychmgr/... ./storage/... ./tools/..." target: "./blockstore/... ./build/... ./chain/... ./conformance/... ./gateway/... ./journal/... ./lib/... ./markets/... ./paychmgr/... ./tools/..."
executor: golang-2xl executor: golang-2xl
- test: - test:
name: test-unit-storage name: test-unit-storage

View File

@ -65,6 +65,8 @@ func main() {
if err != nil { if err != nil {
panic(err) panic(err)
} }
// Redundantly flag both absolute and relative paths as excluded
excluded[filepath.Join(repo, s)] = struct{}{}
excluded[e] = struct{}{} excluded[e] = struct{}{}
} }
} }