1 parent 2b1e7b3 commit aefe7daCopy full SHA for aefe7da
1 file changed
.github/workflows/test.yml
@@ -27,19 +27,19 @@ jobs:
27
28
- name: Run QUBO tests
29
run: |
30
- pytest qubo/tests/test_qubo.py -v --tb=short
+ pytest qubo/test_qubo.py -v --tb=short
31
32
- name: Run QAOA circuit tests
33
34
- pytest qaoa/tests/test_circuit.py -v --tb=short
+ pytest qaoa/test_circuit.py -v --tb=short
35
36
- name: Run classical solver tests
37
38
- pytest classical/tests/test_classical.py -v --tb=short
+ pytest classical/test_classical.py -v --tb=short
39
40
- name: Run full suite with coverage
41
42
- pytest qubo/tests/ qaoa/tests/ classical/tests/ \
+ pytest qubo/ qaoa/ classical/ \
43
--cov=qubo --cov=qaoa --cov=classical \
44
--cov-report=xml \
45
--cov-report=term-missing
0 commit comments