Skip to content

Commit

Permalink
ci: replace go test sum by go test, CI check
Browse files Browse the repository at this point in the history
  • Loading branch information
gbotrel committed May 18, 2021
1 parent e6b54d2 commit a72db6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- run: git update-index --assume-unchanged go.mod
- run: git update-index --assume-unchanged go.sum
- run: if [[ -n $(git status --porcelain) ]]; then echo "Git repo is dirty after runing go generate -- please don't modify generated files"; echo $(git diff);echo $(git status --porcelain); exit 1; fi
- run: gotestsum --junitfile /tmp/test-results/results.xml -- ./... -short -v
- run: go test -short -v ./...
- run: go test -run=CSFuzzed -tags=gofuzz ./backend/groth16/... -v
- store_test_results:
path: /tmp/test-results
Expand Down

0 comments on commit a72db6a

Please sign in to comment.