Skip to content

Commit 60cdf72

Browse files
committed
rename forge-test to test and other usages
1 parent 24afa19 commit 60cdf72

27 files changed

+4
-4
lines changed

target_chains/ethereum/contracts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pnpm turbo build --filter @pythnetwork/pyth-evm-contract
2828
## Testing
2929

3030
Run `forge build` to build the contracts and `forge test` to run the contract unit tests.
31-
The unit tests live in the `forge-test` directory.
31+
The unit tests live in the `test` directory.
3232

3333
### Code Coverage
3434

target_chains/ethereum/contracts/contracts/pulse/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pulse replaces the service formerly known as "scheduler" or "price pusher," and
99
## Build and Test
1010

1111
Run `forge build` to build the contracts and `forge test` to run the contract unit tests.
12-
The unit tests live in the `../../forge-test` directory.
12+
The unit tests live in the `../../test` directory.
1313

1414
Gas benchmarks that cover the most frequent usage patterns are in `PulseSchedulerGasBenchmark.t.sol`. Run the benchmark with -vv to to see the gas usage for the operations under test, without setup costs.
1515

target_chains/ethereum/contracts/foundry.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ evm_version = "paris"
44
optimizer = true
55
optimizer_runs = 200
66
src = 'contracts'
7-
# Tests are in the forge-test directory
8-
test = 'forge-test'
7+
# Tests are in the test directory
8+
test = 'test'
99

1010
libs = ['lib', 'node_modules']
1111

0 commit comments

Comments
 (0)