Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Use dataclasses for input parameters and results #3

Use dataclasses for input parameters and results

Use dataclasses for input parameters and results #3

Workflow file for this run

name: python-tests
on:
push:
paths:
- 'experimental/cluster_migration_core/**.py'
pull_request:
paths:
- 'experimental/cluster_migration_core/**.py'
jobs:
test-linux:
strategy:
matrix:
python-version: ['3.10']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./experimental/cluster_migration_core
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies for Framework and Test Coverage
run: |
python -m pip install -r requirements.txt coverage pytest-cov
- name: Run Tests with Coverage
run: |
python -m pytest unit_tests/ --cov=cluster_migration_core --cov-report=xml --cov-branch
- name: Upload Coverage Report
uses: codecov/codecov-action@v3
with:
files: cluster_migration_core/coverage.xml