Skip to content

Commit

Permalink
Revert "Revert "step4: aggregate tests and split Component""
Browse files Browse the repository at this point in the history
  • Loading branch information
Adal3n3 authored Apr 24, 2024
1 parent b98315b commit e66975e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@ jobs:
python-version: '3.10'
- name: Install requirements
run: pip install -r api/requirements.txt
- name: Run tests and collect coverage for calculator
run: pytest --cov=api.calculator --cov-report=xml:calculator-coverage.xml
- name: Run tests and collect coverage for smiles
run: pytest --cov=api.smiles --cov-report=xml:smiles-coverage.xml
- name: Run tests and collect coverage
run: pytest --cov
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/[email protected]
env:
Expand Down
12 changes: 8 additions & 4 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@ coverage:
default:
target: 100%
threshold: 1%

comment:
layout: "condensed_header, diff, flags, components"

component_management:
individual_components:
- component_id: api # this is an identifier that should not be changed
name: api # this is a display name, and can be changed freely
- component_id: api-calculator # this is an identifier that should not be changed
name: calculator # this is a display name, and can be changed freely
paths:
- api
- api/calculator/
- component_id: api-smiles # this is an identifier that should not be changed
name: smiles # this is a display name, and can be changed freely
paths:
- api/smiles/

0 comments on commit e66975e

Please sign in to comment.