Skip to content

fix test

fix test #132

Workflow file for this run

name: build-linux
on:
push:
branches:
- main
release:
types:
- published
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', 'pypy3.8', 'pypy3.9', 'pypy-3.10']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install prerequisites
run: |
sudo apt install libblas3 liblapack3 liblapack-dev libblas-dev gfortran libatlas-base-dev
- name: Install package and dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade numpy
# python -m pip install .
python setup.py install
- name: Test
run: |
python -m pip install --upgrade pytest
python -m pip install --upgrade pytest-cov
python -m pip install -r tests/requirements.txt
mv special_functions special_functions_do_not_import
pytest