Skip to content

Commit

Permalink
ci: add to run one example in windows
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigomelo9 committed Sep 5, 2024
1 parent 6dc528a commit 91575b1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Set up Python ${{ matrix.pyver }}
uses: actions/setup-python@v5
with:
Expand All @@ -33,14 +30,14 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: pip install . && pip install pytest
run: |
pip install . && pip install pytest
- name: Run tests
run: make test
run: |
$Env:PATH += ";${{ github.workspace }}\tests\mocks"
cd examples\projects && python3 vivado.py
2 changes: 2 additions & 0 deletions tests/mocks/vivado.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@echo off
python3 "%~dp0vivado" %*

0 comments on commit 91575b1

Please sign in to comment.