From 097178cf923d65fe9d76008d5bf65b0b90f3603f Mon Sep 17 00:00:00 2001 From: mike seiler Date: Wed, 31 Jan 2024 23:54:40 -1000 Subject: [PATCH] skipping uniswap and openzeppelin test --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1e94175..8462877 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -123,7 +123,7 @@ jobs: USER_1_PRIVATE_KEY: ${{ steps.accounts.outputs.ACCOUNT1_PRIVATE_KEY }} run: | npx hardhat --network local test ./test/ethers.js/ERC20.js - - name: 'Run tests: Uniswap' + - name: 'Run tests: Uniswap -- SKIPPING' if: always() timeout-minutes: 200 env: @@ -131,8 +131,8 @@ jobs: USER_1_PRIVATE_KEY: ${{ steps.accounts.outputs.ACCOUNT2_PRIVATE_KEY }} LOCAL_NODE_URL: 'http://127.0.0.1:8545' run: | - cd ./extern/fevm-uniswap-v3-core && yarn install --frozen-lockfile && yarn compile && npx hardhat test test/UniswapV3Pool.spec.ts # && yarn test - - name: 'Run tests: OpenZeppelin' + echo skipping ; #cd ./extern/fevm-uniswap-v3-core && yarn install --frozen-lockfile && yarn compile && npx hardhat test test/UniswapV3Pool.spec.ts # && yarn test + - name: 'Run tests: OpenZeppelin -- SKIPPING' if: always() env: USER_1_PRIVATE_KEY: ${{ steps.accounts.outputs.ACCOUNT1_PRIVATE_KEY }} @@ -141,4 +141,4 @@ jobs: USER_4_PRIVATE_KEY: ${{ steps.accounts.outputs.ACCOUNT4_PRIVATE_KEY }} USER_5_PRIVATE_KEY: ${{ steps.accounts.outputs.ACCOUNT5_PRIVATE_KEY }} run: | - cd ./extern/openzeppelin-contracts/ && yarn && mkdir gasreport && npx hardhat --network itest test + echo skipping ; #cd ./extern/openzeppelin-contracts/ && yarn && mkdir gasreport && npx hardhat --network itest test