Skip to content

⬆️ MedCAT==1.9.3 (#92) #292

⬆️ MedCAT==1.9.3 (#92)

⬆️ MedCAT==1.9.3 (#92) #292

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
Test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: install python3
uses: actions/setup-python@v2
with:
python-version: 3.8.10
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install ./
pip list
- name: download model
run: |
python -m spacy download en_core_web_md
pip install https://huggingface.co/kormilitzin/en_core_med7_lg/resolve/main/en_core_med7_lg-any-py3-none-any.whl
- name: run pytest
run: pytest ./tests/*