expose tophat kernel connectivity and make n-false-postives a float #216
Workflow file for this run
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: "Unit tests" | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
tags: | |
- "[0-9]+.[0-9]+.[0-9]+" | |
schedule: | |
# Weekly on saturday 23:59 | |
- cron: "59 23 * * 6" | |
jobs: | |
test_suite: | |
runs-on: [self-hosted, linux, x64, gpu] | |
container: | |
image: continuumio/miniconda3 | |
options: --runtime=nvidia --gpus all | |
steps: | |
- name: Pull code | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
conda install -y -c conda-forge python=3 cupy cuda-version=11.8 | |
python -m pip install coverage | |
- name: Install base code and list dependencies | |
run: | | |
python -m pip install -e . | |
conda list | |
- name: Run tests | |
run: | | |
coverage run -m unittest discover tests/ | |
- name: Install plotting code and list dependencies | |
run: | | |
python -m pip install -e .[plotting] | |
conda list | |
- name: Run complete tests and generate coverage report | |
run: | | |
coverage run -m unittest discover tests/ | |
coverage combine | |
coverage xml | |
echo ${{ github.event.number }} > coverage.PR | |
- name: upload coverage report | |
uses: actions/upload-artifact@v4 | |
with: | |
path: coverage.* | |
name: coverage |