Skip to content

Commit

Permalink
adjust paths
Browse files Browse the repository at this point in the history
  • Loading branch information
turbolent committed Oct 29, 2024
1 parent bc3bc62 commit ff8d29d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ ci:
# test all packages
go test -coverprofile=coverage.txt -covermode=atomic -parallel 8 -race -coverpkg $(COVERPKGS) ./...
# run interpreter smoke tests. results from run above are reused, so no tests runs are duplicated
go test -count=5 ./tests/interpreter/... -runSmokeTests=true -validateAtree=false
go test -count=5 ./interpreter/... -runSmokeTests=true -validateAtree=false
# remove coverage of empty functions from report
sed -i -e 's/^.* 0 0$$//' coverage.txt

Expand Down
2 changes: 1 addition & 1 deletion docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ contains command-line tools that are useful when working on the implementation f
Run the checker tests with the `cadence.checkConcurrently` flag, e.g.

```shell
go test -race -v ./tests/checker -cadence.checkConcurrently=10
go test -race -v ./sema/... -cadence.checkConcurrently=10
```

This runs each check of a checker test 10 times, concurrently,
Expand Down

0 comments on commit ff8d29d

Please sign in to comment.