Skip to content

evaluation descrptor/descriptor et concept/descriptor mesh #100

evaluation descrptor/descriptor et concept/descriptor mesh

evaluation descrptor/descriptor et concept/descriptor mesh #100

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install coverage
- name: Run tests with coverage
run: |
coverage run -m pytest
coverage report
- name: Upload coverage report
uses: actions/upload-artifact@v3
with:
name: coverage-report
path: htmlcov