Closed
Changes from all commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Failed to load files.
Original file line numberDiff line numberDiff line change
Expand Up@@ -12,7 +12,18 @@ jobs:
python-version: '3.10'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests and collect coverage for calculator
run: pytest --cov

- name: Run tests and collect coverage for simple calculator
run: pytest --cov calculator.simple
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3

- name: Run tests and collect coverage for complex calculator
run: pytest --cov calculator.complex
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3

- name: Run tests and collect coverage for smiles
run: pytest --cov smiles
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3