This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
[pre-commit.ci] pre-commit autoupdate (#231) #46
This file contains 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: Test with numba turned off | |
# These tests are relatively slow (~20 minutes), but are used | |
# to collect code coverage on areas of code that are otherwise | |
# optimised by numba. | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
test_numba_disabled: | |
name: Run tests | |
runs-on: ubuntu-latest | |
env: | |
NUMBA_DISABLE_JIT: "1" | |
steps: | |
- name: Cache tensorflow model | |
uses: actions/cache@v3 | |
with: | |
path: "~/.cellfinder" | |
key: models-${{ hashFiles('~/.cellfinder/**') }} | |
- uses: neuroinformatics-unit/actions/test@v2 | |
with: | |
python-version: "3.10" | |
codecov-flags: "numba" |