<div dir="ltr">Hi QGIS Community!<br><br>I want to set up a GitHub workflow to test if the QGIS plugin installation is working on Windows and if the tests are passing.<br><br>I currently use this code, but it does not test the installation. Some tests are failing under this Windows installation, but passing on Ubuntu-latest.<br><br>Does anyone have a suggestion to overcome both installation and testing issues?<br><br>Thanks a lot,<br><br>Renata Imai.<br><br><br><font face="monospace">```<br>name: DevelopmentTests<br><br>on:  [pull_request]<br><br>jobs:<br>  windows_test:<br>    runs-on: windows-latest<br><br>    steps:<br>      - uses: actions/checkout@v3<br>     <br>      - name: Install QGIS on Chocolatey<br>        uses: crazy-max/ghaction-chocolatey@v3<br>        with:<br>          args: install qgis-ltr -y --version 3.34.6<br><br>      - name: Plugin install<br>        shell: pwsh<br>        run: |<br>          $env:PATH="C:\Program Files\QGIS 3.34.6\bin;$env:PATH"<br>          $env:QGIS_PLUGIN_IN_CI=1<br>          python-qgis-ltr.bat -m pip install -r test/requirements-test.txt<br>          python-qgis-ltr.bat -m pytest test<br>```</font><br></div>