Skip to content

auc estimation

auc estimation #194

Workflow file for this run

name: CodeCov
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Test python API
steps:
- uses: actions/checkout@v1
- name: Install requirements
run:
pip install -r requirements.txt
pip install -e .
pip install pytest-cov
- name: Run tests and collect coverage
run: pytest --cov=mlscorecheck tests
- name: Upload coverage reports to Codecov
run:
# Replace `linux` below with the appropriate OS
# Options are `alpine`, `linux`, `macos`, `windows`
curl -Os https://uploader.codecov.io/latest/linux/codecov;
chmod +x codecov;
./codecov