Skip to content

Commit 118ff0f

Browse files
committed
fixed integrational test
1 parent 58191e5 commit 118ff0f

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/integration.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,11 @@ jobs:
2323
device: [ESP32]
2424
steps:
2525
- uses: actions/checkout@v4
26-
- run: pip install -e .
26+
- name: Setup venv
27+
run: |
28+
python3 -m venv .venv
29+
.venv/bin/pip install -e .
2730
- name: Integration tests (${{ matrix.device }})
2831
env:
2932
MPYTOOL_TEST_PORT_RW: ${{ env[format('MPYTOOL_TEST_{0}', matrix.device)] }}
30-
run: python -m unittest tests.test_integration tests.test_cli -v
33+
run: .venv/bin/python -m unittest tests.test_integration tests.test_cli -v

0 commit comments

Comments
 (0)