Skip to content

Commit 1276d10

Browse files
committed
build(github): fix rm of python sources before test exe
1 parent 7c441ab commit 1276d10

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build_and_release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,12 @@ jobs:
3939
run: |
4040
python -m build -Ccompile-args="--verbose" -Ccompile-args="-j4" . # -j4 because we do not have enough RAM
4141
pip install dist/*.whl
42-
rm -rf $MODULE_NAME
4342
4443
- name: Test
4544
run: |
45+
mv hdlConvertor tmp_hdlConvertor
4646
python -m tests.all
47+
mv tmp_hdlConvertor hdlConvertor
4748
4849
- name: Extract Coverage Report
4950
run: |

0 commit comments

Comments
 (0)