Skip to content

Commit

Permalink
Changes checks to new tests on pytests-branch
Browse files Browse the repository at this point in the history
  • Loading branch information
holm10 committed Dec 9, 2023
1 parent 576c6a0 commit 9b69a72
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
python-version: [3.9]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install pip dependencies
Expand All @@ -29,7 +29,11 @@ jobs:
run: |
python setup.py build
python setup.py install
- name: Test with pytest
- name: Checkout pytest branch
uses: actions/checkout@v4
with:
ref: pytests
- name: Test with pytest from dedicated branch
run: |
# Create a clean UEDGE instance for every test
pytest --forked
pytest --forked --tb=native pytests/pytests

0 comments on commit 9b69a72

Please sign in to comment.