Skip to content

Commit

Permalink
Add always to run all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
joserapa98 committed May 9, 2024
1 parent 08dc85a commit b203e32
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,23 @@ jobs:
- name: Test components
run: pytest tests/test_components.py --cov=tensorkrowch
- name: Test operations
if: always()
run: pytest tests/test_operations.py --cov=tensorkrowch
- name: Test embeddings
if: always()
run: pytest tests/test_embeddings.py --cov=tensorkrowch
- name: Test decompositions
if: always()
run: pytest tests/decompositions/ --cov=tensorkrowch
- name: Test MPS
if: always()
run: pytest tests/models/test_mps.py --cov=tensorkrowch
- name: Test MPO
if: always()
run: pytest tests/models/test_mpo.py --cov=tensorkrowch
- name: Test PEPS
if: always()
run: pytest tests/models/test_peps.py --cov=tensorkrowch
- name: Test Tree
if: always()
run: pytest tests/models/test_tree.py --cov=tensorkrowch

0 comments on commit b203e32

Please sign in to comment.