Skip to content

show Components with Flags #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 19 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,24 @@ 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
with:
flags: simple

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

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