diff --git a/contracts/hardhat.config.ts b/contracts/hardhat.config.ts index 4675301e4e..6e2f45c4bf 100644 --- a/contracts/hardhat.config.ts +++ b/contracts/hardhat.config.ts @@ -21,9 +21,9 @@ subtask(TASK_COMPILE_SOLIDITY_GET_SOURCE_PATHS).setAction( async (_, __, runSuper) => { const paths = await runSuper() const noTests = paths.filter((p: string) => !p.endsWith('.t.sol')) - const noCCIP = noTests.filter((p: string) => !p.includes('/v0.8/ccip')) + const noCCIP = noTests.filter((p: string) => !p.includes('/v0.8/ccip/test')) const noKeystone = noCCIP.filter( - (p: string) => !p.includes('/v0.8/keystone'), + (p: string) => !p.includes('/v0.8/keystone/test'), ) return noKeystone.filter( (p: string) => !p.includes('src/v0.8/vendor/forge-std'),