Skip to content

Commit

Permalink
gen correct cov report
Browse files Browse the repository at this point in the history
  • Loading branch information
ZumZoom committed Jan 8, 2024
1 parent 85f140b commit a8e5d1e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
- run: yarn lint

test:
if: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -28,6 +29,7 @@ jobs:
- run: yarn test:ci

coverage:
if: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -97,4 +99,3 @@ jobs:
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}

Empty file modified coverage.sh
100644 → 100755
Empty file.
2 changes: 2 additions & 0 deletions test/utils/BaseSetup.sol
Original file line number Diff line number Diff line change
Expand Up @@ -347,4 +347,6 @@ contract BaseSetup is Test {
// TODO: build taker traits
return TakerTraits.wrap(1 << 255);
}

function test() public {}
}
2 changes: 2 additions & 0 deletions test/utils/Utils.sol
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,6 @@ contract Utils is Test {
uint256 targetBlock = block.number + numBlocks;
vm.roll(targetBlock);
}

function test() public {}
}

0 comments on commit a8e5d1e

Please sign in to comment.