Skip to content

fixed jackknife method #388

fixed jackknife method

fixed jackknife method #388

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test for abICS
on: [push]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
testname: [Unit, Sampling, ActiveLearn]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install setuptools wheel
sudo apt update
sudo apt install -y libopenmpi-dev openmpi-bin parallel
sudo apt install -y python3-mpi4py
python -m pip install Cython
- name: Install abICS
run: python -m pip install .
- name: Test ${{ matrix.testname }}
run: |
case "${{ matrix.testname }}" in
Unit ) python -m unittest ;;
Sampling ) cd tests/integration/mock
sh ./run.sh
cd ../potts
sh ./run.sh
cd ../potts_pamc
sh ./run.sh
;;
ActiveLearn ) cd tests/integration/active_learn
sh ./install_aenet.sh
sh ./run.sh ;;
* ) echo "Unknown testname";;
esac