Skip to content

Bump scipy from 1.7.1 to 1.10.0 in /benchmark/ope #395

Bump scipy from 1.7.1 to 1.10.0 in /benchmark/ope

Bump scipy from 1.7.1 to 1.10.0 in /benchmark/ope #395

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request: {}
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
# Not intended for forks.
if: github.repository == 'st-tech/zr-obp'
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
pip install --progress-bar off -U setuptools
# Install pytest
pip install --progress-bar off .
pip install --progress-bar off pytest
- name: Tests
run: |
pytest tests