PR: Add version to fonts assets, some error handling for Windows font installation logic and keep up to date update scripts/commands #209
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
windows: | |
name: Windows Py${{ matrix.PYTHON_VERSION }} - ${{ matrix.QT_BINDING }} | |
timeout-minutes: 15 | |
runs-on: windows-latest | |
env: | |
CI: True | |
QT_API: ${{ matrix.QT_BINDING }} | |
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }} | |
RUNNER_OS: 'windows' | |
strategy: | |
fail-fast: false | |
matrix: | |
PYTHON_VERSION: ['3.7', '3.10'] | |
QT_BINDING: ['pyqt5', 'pyside2'] | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v1 | |
- name: Install Conda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
activate-environment: test | |
auto-update-conda: false | |
auto-activate-base: false | |
python-version: ${{ matrix.PYTHON_VERSION }} | |
channels: conda-forge | |
channel-priority: strict | |
- name: Install package dependencies | |
shell: bash -l {0} | |
run: conda env update --file requirements/environment_tests_${{ matrix.QT_BINDING }}.yml | |
- name: Install Package | |
shell: bash -l {0} | |
run: pip install -e . | |
- name: Show environment information | |
shell: bash -l {0} | |
run: | | |
conda info | |
conda list | |
- name: Run tests | |
shell: bash -l {0} | |
run: | | |
if [ "$QT_BINDING" = "pyside2" ]; then | |
python example.py | |
fi | |
pytest -x -vv --cov-report xml --cov=qtawesome qtawesome | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
fail_ci_if_error: true | |
verbose: true |