Merge pull request #417 from bknueven/license_copyright #1054
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
# confint (pyomo released) | |
name: confidence intervals 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.8 | |
auto-activate-base: false | |
- name: Install dependencies | |
run: | | |
conda install mpi4py "numpy<2" setuptools | |
pip install pyomo pandas xpress cplex scipy sympy dill | |
- name: setup the program | |
run: | | |
pip install -e . | |
- name: run farmer tests | |
timeout-minutes: 10 | |
run: | | |
cd mpisppy/tests | |
python test_conf_int_farmer.py | |
- name: run aircond tests | |
timeout-minutes: 10 | |
run: | | |
cd mpisppy/tests | |
python test_conf_int_aircond.py |