Skip to content

Commit ff8d29d

Browse files
committed
adjust paths
1 parent bc3bc62 commit ff8d29d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ ci:
6464
# test all packages
6565
go test -coverprofile=coverage.txt -covermode=atomic -parallel 8 -race -coverpkg $(COVERPKGS) ./...
6666
# 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
6868
# remove coverage of empty functions from report
6969
sed -i -e 's/^.* 0 0$$//' coverage.txt
7070

docs/development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ contains command-line tools that are useful when working on the implementation f
8383
Run the checker tests with the `cadence.checkConcurrently` flag, e.g.
8484

8585
```shell
86-
go test -race -v ./tests/checker -cadence.checkConcurrently=10
86+
go test -race -v ./sema/... -cadence.checkConcurrently=10
8787
```
8888

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

0 commit comments

Comments
 (0)