Skip to content

Commit aefe7da

Browse files
Fix pytest paths in GitHub Actions test workflow
1 parent 2b1e7b3 commit aefe7da

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@ jobs:
2727
2828
- name: Run QUBO tests
2929
run: |
30-
pytest qubo/tests/test_qubo.py -v --tb=short
30+
pytest qubo/test_qubo.py -v --tb=short
3131
3232
- name: Run QAOA circuit tests
3333
run: |
34-
pytest qaoa/tests/test_circuit.py -v --tb=short
34+
pytest qaoa/test_circuit.py -v --tb=short
3535
3636
- name: Run classical solver tests
3737
run: |
38-
pytest classical/tests/test_classical.py -v --tb=short
38+
pytest classical/test_classical.py -v --tb=short
3939
4040
- name: Run full suite with coverage
4141
run: |
42-
pytest qubo/tests/ qaoa/tests/ classical/tests/ \
42+
pytest qubo/ qaoa/ classical/ \
4343
--cov=qubo --cov=qaoa --cov=classical \
4444
--cov-report=xml \
4545
--cov-report=term-missing

0 commit comments

Comments
 (0)