Skip to content

fix test_sudire imports for optional cyipopt #187

fix test_sudire imports for optional cyipopt

fix test_sudire imports for optional cyipopt #187

name: Python package
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
activate-environment: testenv
auto-activate-base: false
- name: Install dependencies
run: |
# cyipopt commented out to test standard install without ipopt
conda install -y -c conda-forge scikit-learn pandas numpy statsmodels dcor sympy matplotlib flake8 pytest
- name: Conda info
run: conda info
- name: Conda list
run: conda list
- name: Install package
run: |
pip install -e .
- name: Lint with flake8
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --exit-zero --max-complexity=15 --max-line-length=127 --statistics
- name: Test with pytest
run: pytest