<div dir="ltr">Hello everyone!<br><br>I want to set up a GitHub workflow to test if the QGIS plugin installation works fine on Windows and if the tests are passing. This is due to several installation issues our users have had recently so that we can spot and fix them right away.<br><br>I'm currently using the code below, but it does not test the plugin installation following the same steps a user would take to install it and despite this first issue, some tests are failing under this Windows installation, but passing on Ubuntu-latest.<div><br>Does anyone have a suggestion to overcome both installation and testing issues?<br><br>Regards, </div><div><br></div><div>Renata.<br><div><br></div><div><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 at v3<br><br>      - name: Install QGIS on Chocolatey<br>        uses: crazy-max/ghaction-chocolatey at 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>```<br></font></div><div><br></div></div></div>