We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58191e5 commit 118ff0fCopy full SHA for 118ff0f
1 file changed
.github/workflows/integration.yml
@@ -23,8 +23,11 @@ jobs:
23
device: [ESP32]
24
steps:
25
- uses: actions/checkout@v4
26
- - run: pip install -e .
+ - name: Setup venv
27
+ run: |
28
+ python3 -m venv .venv
29
+ .venv/bin/pip install -e .
30
- name: Integration tests (${{ matrix.device }})
31
env:
32
MPYTOOL_TEST_PORT_RW: ${{ env[format('MPYTOOL_TEST_{0}', matrix.device)] }}
- 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