ensure the UI save operation finished #1965
Workflow file for this run
This file contains hidden or 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: Test MSS | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - stable | |
| - 'GSOC**' | |
| pull_request: | |
| branches: | |
| - develop | |
| - stable | |
| - 'GSOC**' | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ["macos-14", "macos-15", "ubuntu-latest"] | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4 | |
| - uses: prefix-dev/setup-pixi@82d477f15f3a381dbcc8adc1206ce643fe110fb7 # v0.9.3 | |
| with: | |
| pixi-version: latest | |
| cache: true | |
| environments: dev | |
| - name: Run tests | |
| timeout-minutes: 40 | |
| run: pixi run -e dev env QT_QPA_PLATFORM=offscreen pytest -v -n logical --durations=20 --cov=mslib tests | |
| - run: pixi run -e dev coverage xml | |
| - name: Send coverage to Coveralls (parallel) | |
| uses: coverallsapp/github-action@5cbfd81b66ca5d10c19b062c04de0199c215fb6e # v2.3.7 | |
| with: | |
| debug: true | |
| parallel: true | |
| format: cobertura | |
| flag-name: ${{ join(matrix.*, ' - ') }} | |
| finish: | |
| needs: test | |
| runs-on: ubuntu-latest | |
| if: ${{ always() }} | |
| steps: | |
| - name: Close parallel build | |
| uses: coverallsapp/github-action@5cbfd81b66ca5d10c19b062c04de0199c215fb6e # v2.3.7 | |
| with: | |
| parallel-finished: true |