File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-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 : pip install . & pip install pytest
45
39
- name : Run tests
46
- run : make test
40
+ run : |
41
+ set TEST_MOCKS_PATH=${{ github.workspace }}\tests\mocks
42
+ set PATH=%TEST_MOCKS_PATH%;%PATH%
43
+ cd examples\projects & python3 vivado.py
You can’t perform that action at this time.
0 commit comments