Skip to content

Fix risk adjusted performance penalty #3994

Fix risk adjusted performance penalty

Fix risk adjusted performance penalty #3994

Workflow file for this run

name: Python CI
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest coverage
- name: Run unit tests with coverage
run: |
coverage run -m pytest .
coverage xml -o coverage.xml