Update tnt.py #2565
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: 🧪 Tests | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| pull_request: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: "0 7 * * 1" | |
| jobs: | |
| run-tests: | |
| name: Run tests | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install OpenBLAS | |
| run: sudo apt-get install -y libopenblas-dev | |
| - name: Load matrix cache | |
| id: cache-restore | |
| uses: actions/cache/restore@v3 | |
| with: | |
| path: /home/runner/.cache/symfem | |
| key: symfem-matrix-cache | |
| - uses: actions/checkout@v4 | |
| - run: pip install git+https://github.com/FEniCS/basix.git git+https://github.com/FEniCS/ufl.git | |
| name: Install Basix and UFL | |
| - run: pip install .[test] pytest-xdist | |
| name: Install Symfem | |
| - name: Install LaTeΧ | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y texlive-latex-base texlive-latex-extra | |
| - run: python3 -m pytest --durations=50 test -W error -xvs --has-basix 1 | |
| name: Run unit tests | |
| - run: python3 -m pytest demo/test_demos.py -W error | |
| name: Run demos | |
| - run: python3 -m pytest scripts/test_scripts.py | |
| name: Run scripts | |
| - name: Save matrix cache | |
| id: cache-save | |
| uses: actions/cache/save@v3 | |
| with: | |
| path: /home/runner/.cache/symfem | |
| key: symfem-matrix-cache-${{ github.run_id }} | |
| restore-keys: symfem-matrix-cache | |
| if: ${{ matrix.python-version == '3.14' && github.ref == 'refs/heads/main' }} |