File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,18 @@ jobs:
1212
python-version: '3.10'
1313
- name: Install dependencies
1414
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
1728
- name: Upload coverage to Codecov
1829
uses: codecov/codecov-action@v3

0 commit comments

Comments
 (0)