File tree
Expand file treeCollapse file tree1 file changed
+13
-2
lines changed Expand file treeCollapse file tree1 file changed
+13
-2
lines changed Original file line number | Diff line number | Diff line change |
---|
|
12 | 12 | python-version: '3.10'
|
13 | 13 | - name: Install dependencies
|
14 | 14 | run: pip install -r requirements.txt
|
15 |
| -- name: Run tests and collect coverage for calculator |
16 |
| -run: pytest --cov |
| 15 | + |
| 16 | +- name: Run tests and collect coverage for simple calculator |
| 17 | +run: pytest --cov calculator.simple |
| 18 | +- name: Upload coverage to Codecov |
| 19 | +uses: codecov/codecov-action@v3 |
| 20 | + |
| 21 | +- name: Run tests and collect coverage for complex calculator |
| 22 | +run: pytest --cov calculator.complex |
| 23 | +- name: Upload coverage to Codecov |
| 24 | +uses: codecov/codecov-action@v3 |
| 25 | + |
| 26 | +- name: Run tests and collect coverage for smiles |
| 27 | +run: pytest --cov smiles |
17 | 28 | - name: Upload coverage to Codecov
|
18 | 29 | uses: codecov/codecov-action@v3
|
You can’t perform that action at this time.
0 commit comments