File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 64
64
# test all packages
65
65
go test -coverprofile=coverage.txt -covermode=atomic -parallel 8 -race -coverpkg $(COVERPKGS ) ./...
66
66
# run interpreter smoke tests. results from run above are reused, so no tests runs are duplicated
67
- go test -count=5 ./tests/ interpreter/... -runSmokeTests=true -validateAtree=false
67
+ go test -count=5 ./interpreter/... -runSmokeTests=true -validateAtree=false
68
68
# remove coverage of empty functions from report
69
69
sed -i -e ' s/^.* 0 0$$//' coverage.txt
70
70
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ contains command-line tools that are useful when working on the implementation f
83
83
Run the checker tests with the ` cadence.checkConcurrently ` flag, e.g.
84
84
85
85
``` shell
86
- go test -race -v ./tests/checker -cadence.checkConcurrently=10
86
+ go test -race -v ./sema/... -cadence.checkConcurrently=10
87
87
```
88
88
89
89
This runs each check of a checker test 10 times, concurrently,
You can’t perform that action at this time.
0 commit comments