Skip to content

Commit

Permalink
move qt-lib set up to before testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesyan-git committed Oct 12, 2023
1 parent 6f8fea8 commit 6d92c67
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,19 @@ jobs:
with:
python-version: ${{ matrix.python }}

# these libraries enable testing on Qt on linux
- uses: tlambert03/setup-qt-libs@v1

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest pytest-cookies tox
- name: Test
uses: aganders3/headless-gui@v1
with:
run: python -m pytest -s -v --color=yes

- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -48,16 +61,3 @@ jobs:
- name: Coverage
if: runner.os == 'Linux' && matrix.python == '3.10'
uses: codecov/codecov-action@v1

# these libraries enable testing on Qt on linux
- uses: tlambert03/setup-qt-libs@v1

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest pytest-cookies tox
- name: Test
uses: aganders3/headless-gui@v1
with:
run: python -m pytest -s -v --color=yes

0 comments on commit 6d92c67

Please sign in to comment.