Skip to content

Prohibit automatic multithreading in Numpy, Tensorflow & Torch for large matrices #165

Prohibit automatic multithreading in Numpy, Tensorflow & Torch for large matrices

Prohibit automatic multithreading in Numpy, Tensorflow & Torch for large matrices #165

Workflow file for this run

name: Run unit tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
deploy:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest',]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[develop]
- name: Run unit tests
run: |
pytest src/tests/test_ODE.py
pytest src/tests/test_JumpProcess.py
pytest src/tests/test_calibration.py