Skip to content

Commit

Permalink
coverage fix eof
Browse files Browse the repository at this point in the history
  • Loading branch information
winsvega committed Jun 10, 2024
1 parent 1a9c38b commit 9842db6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }} # Checks out the PR branch
fetch-depth: 0 # Necessary to fetch all history for diff

- name: Fetch target branch
run: git fetch origin ${{ github.base_ref }}:refs/remotes/origin/${{ github.base_ref }}
Expand All @@ -23,18 +20,18 @@ jobs:
echo $(pwd)
echo ${{ github.workspace }}
#install pyspec deps from root repo
python3 --version
python3 -m venv ./venv/
source ./venv/bin/activate
pip install -e .
#install solc
curl -L --output solc "https://github.com/ethereum/solidity/releases/download/v0.8.25/solc-static-linux"
sudo mv solc /usr/local/bin
sudo chmod +x /usr/local/bin/solc
solc --version
#install pyspec deps from root repo
python3 --version
python3 -m venv ./venv/
source ./venv/bin/activate
pip install -e .
# Required to fill .py tests
- name: Build GO EVM
uses: ./.github/actions/build-evm
Expand Down
5 changes: 1 addition & 4 deletions converted-ethereum-tests.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
src/
EOFTestsFiller/
EIP3540/
validInvalidFiller.yml
src/EOFTestsFiller/EIP3540/validInvalidFiller.yml

0 comments on commit 9842db6

Please sign in to comment.