allow --module-name= #1051
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# pysp interface (pyomo released) | |
name: pysp tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
defaults: | |
run: | |
shell: bash -l {0} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
activate-environment: test_env | |
python-version: 3.9 | |
auto-activate-base: false | |
- name: Install dependencies | |
run: | | |
conda install mpi4py pandas setuptools pytest pyyaml networkx | |
pip install pyomo xpress cplex | |
- name: setup the program | |
run: | | |
pip install -e . | |
- name: run pysp model tests | |
timeout-minutes: 100 | |
run: | | |
cd mpisppy/tests | |
# envall does nothing | |
python test_pysp_model.py | |
- name: run pysp unit tests | |
timeout-minutes: 100 | |
run: | | |
cd mpisppy/utils/pysp_model | |
pytest -v . |