Skip to content

Add evaluation_pipeline.py and the unit test evaluation_pipeline_test… #1

Add evaluation_pipeline.py and the unit test evaluation_pipeline_test…

Add evaluation_pipeline.py and the unit test evaluation_pipeline_test… #1

Workflow file for this run

name: Test
on:
- pull_request
- push
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.10']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
export PYTHONPATH=./:$PYTHONPATH
pytest tests/ --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html