ci: show coverage report in CI, explicitly specify test directory
This commit is contained in:
parent
fa8b5ebc4c
commit
54ee4c5143
|
|
@ -6,7 +6,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install Manta from Source
|
||||
- name: Install Manta from source
|
||||
run: |
|
||||
# Make venv
|
||||
python3 -m venv venv/
|
||||
|
|
@ -44,6 +44,11 @@ jobs:
|
|||
.coverage
|
||||
coverage.xml
|
||||
|
||||
- name: Show coverage report
|
||||
run: |
|
||||
source venv/bin/activate
|
||||
coverage report
|
||||
|
||||
- name: Upload results to Codecov
|
||||
run: |
|
||||
source venv/bin/activate
|
||||
|
|
|
|||
|
|
@ -16,6 +16,8 @@ build/
|
|||
*.vcd
|
||||
*.out
|
||||
*.csv
|
||||
*.xml
|
||||
.coverage*
|
||||
|
||||
# Vivado files
|
||||
*.log
|
||||
|
|
|
|||
Loading…
Reference in New Issue