Fix test isolation by allowing config directory override via MSS_CONFIG_PATH #2143
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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4 | |
| - uses: prefix-dev/setup-pixi@a0af7a228712d6121d37aba47adf55c1332c9c2e # v0.9.4 | |
| 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 |