Skip to content

Commit cea45fa

Browse files
committed
fix evm test
1 parent dc31e89 commit cea45fa

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/build-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ jobs:
9494
pip3 install -e .[evm]
9595
9696
if [ ${{ matrix.python-version }} == '3.9' ]; then
97-
rm -rf qiling/engine
97+
rm -rf tests/test_evm.py
9898
fi
9999
100100
if [ ${{ matrix.os }} == 'ubuntu-20.04' ]; then
101-
docker run -it --rm -v ${GITHUB_WORKSPACE}:/qiling qilingframework/qiling:dev bash -c "rm -rf qiling/engine && cd tests && ./test_onlinux.sh"
101+
docker run -it --rm -v ${GITHUB_WORKSPACE}:/qiling qilingframework/qiling:dev bash -c "rm -rf tests/test_evm.py && cd tests && ./test_onlinux.sh"
102102
else
103103
pip3 install setuptools wheel
104104
cd tests && ./test_onlinux.sh

tests/test_onlinux.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,7 @@ python3 ./test_uefi.py &&
1313
python3 ./test_shellcode.py &&
1414
python3 ./test_edl.py &&
1515
python3 ./test_qnx.py && echo "Done OS Test"
16+
17+
if [ -f ./test_evm.py ]; then
18+
python3 ./test_evm.py && echo "Done EVM test"
19+
fi

0 commit comments

Comments
 (0)