diff --git a/packages/marketplace/hardhat.config.ts b/packages/marketplace/hardhat.config.ts index c4c852089b..d2d6097f3e 100644 --- a/packages/marketplace/hardhat.config.ts +++ b/packages/marketplace/hardhat.config.ts @@ -18,15 +18,6 @@ const config: HardhatUserConfig = { }, }, }, - { - version: '0.8.19', - settings: { - optimizer: { - enabled: true, - runs: 2000, - }, - }, - }, ], }, contractSizer: { @@ -40,5 +31,8 @@ const config: HardhatUserConfig = { enabled: true, excludeContracts: ['mocks', '@openzeppelin'], }, + mocha: { + ...(!process.env.CI ? {} : {invert: true, grep: '@skip-on-ci'}), + }, }; export default config;