build: add go.work in gitignore (#13100)

* build: add `go.work` in gitignore

* markdownlint
This commit is contained in:
Julien Robert
2022-08-30 21:08:04 +00:00
committed by GitHub
parent 783f597866
commit 2c527d0650
8 changed files with 2549 additions and 2549 deletions
+1 -2
View File
@@ -21,8 +21,7 @@ execute_mod_tests() {
echo ">>> running $go_mod tests"
cd $mod_dir;
# Here we don't use the go.work for ensuring that the modules are correctly tagged and tidy-ed.
GOWORK=off go test -mod=readonly -timeout 30m -coverprofile=${root_dir}/${coverage_file}.tmp -covermode=atomic -tags='norace ledger test_ledger_mock rocksdb_build' ./...
go test -mod=readonly -timeout 30m -coverprofile=${root_dir}/${coverage_file}.tmp -covermode=atomic -tags='norace ledger test_ledger_mock rocksdb_build' ./...
local ret=$?
echo "test return: " $ret;
cd -;