Skip to content

Commit f442748

Browse files
committed
Fix mocking path for CI
1 parent 8fa5991 commit f442748

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ jobs:
2020
test:
2121
name: test
2222
runs-on: ubuntu-latest
23-
env:
24-
MICROPYPATH: "$(pwd)/tests/mocks:$(pwd):.frozen:~/.micropython/lib:/usr/lib/micropython"
2523
steps:
2624
- uses: actions/checkout@v2
2725
- name: Build micropython
@@ -43,5 +41,7 @@ jobs:
4341
run: "micropython -m mip install github:${{ github.repository }}@${{ github.ref_name }}"
4442
- name: Run tests
4543
run: micropython -m unittest
44+
env:
45+
MICROPYPATH: "${{ github.workspace }}:.frozen:~/.micropython/lib:/usr/lib/micropython:${{ github.workspace }}/tests/mocks"
4646
- name: Run integration tests
4747
run: ./bin/test_e2e

0 commit comments

Comments
 (0)