File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 14
14
steps :
15
15
- name : Checkout repository
16
16
uses : actions/checkout@v4
17
- with :
18
- submodules : true
19
- fetch-depth : 0
20
17
- name : Set up Python ${{ matrix.pyver }}
21
18
uses : actions/setup-python@v5
22
19
with :
@@ -33,14 +30,14 @@ jobs:
33
30
steps :
34
31
- name : Checkout repository
35
32
uses : actions/checkout@v4
36
- with :
37
- submodules : true
38
- fetch-depth : 0
39
33
- name : Set up Python 3.12
40
34
uses : actions/setup-python@v5
41
35
with :
42
36
python-version : 3.12
43
37
- name : Install dependencies
44
- run : pip install . && pip install pytest
38
+ run : |
39
+ pip install . && pip install pytest
45
40
- name : Run tests
46
- run : make test
41
+ run : |
42
+ $Env:PATH += ";${{ github.workspace }}\tests\mocks"
43
+ cd examples\projects && python3 vivado.py
Original file line number Diff line number Diff line change
1
+ @ echo off
2
+ python3 " %~dp0 vivado" %*
You can’t perform that action at this time.
0 commit comments