Skip to content

Commit 08437bf

Browse files
committed
ci: specify PATH for mock-ups (Windows-only)
1 parent f909097 commit 08437bf

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@ name: 'test'
22

33
on:
44
push:
5-
paths:
6-
- 'examples/projects/**'
7-
- 'pyfpga/**'
8-
- 'tests/**'
95

106
jobs:
117
test:
@@ -33,5 +29,8 @@ jobs:
3329
python-version: ${{ matrix.pyver }}
3430
- name: Install dependencies
3531
run: pip install . && pip install pytest
32+
- name: Set PATH (Windows)
33+
run: setx PATH "$env:PWD\tests\mocks;$env:PATH"
34+
if: runner.os == 'Windows'
3635
- name: Run tests
3736
run: make test

0 commit comments

Comments
 (0)