Skip to content

⬆️ Bump scipy from 1.10.1 to 1.15.0 #181

⬆️ Bump scipy from 1.10.1 to 1.15.0

⬆️ Bump scipy from 1.10.1 to 1.15.0 #181

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
push:
branches:
- main
tags: "*"
jobs:
run_tests:
name: Python ${{ matrix.python-version }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
os:
- ubuntu-latest
arch:
- x64
# group:
# - Fast_Tests
# - Slow_Tests
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version : ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install package
run: |
pip install .
- name: Run fast tests
run: |
pip install pytest
python -m pytest
- name: Run slow tests
run: |
python -m pytest --runslow