Skip to content

reiterate

reiterate #2

Workflow file for this run

name: Unittests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
pip install pymoo==0.6.1.1
pip install gpytorch==1.11
pip install HEBO==0.3.5 --no-deps
- name: Run pytest
run: |
pytest -sv tests/