fix: close file handles in read_full_med_mentions and read_ner_from_tsv #193
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI (old scipy) | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Build and test with Docker using an older version of scipy | |
| run: | | |
| docker build --tag scispacy . | |
| docker run --rm scispacy bash -c "pip install 'scipy<1.11' && pytest tests/" |