Skip to content

Feature/arch sbo precision #30

Feature/arch sbo precision

Feature/arch sbo precision #30

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://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Slow Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.9"]
steps:
- uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Python info
run: python --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install -r requirements-tests.txt
pip install -r requirements-assignment.txt
pip install -r requirements-hebo.txt
pip install -e .[arch_sbo,botorch,trieste,tpe]
pip install jupyter ipython ipykernel
ipython kernel install --name "python3" --user
- name: Test with pytest
run: RUN_SLOW_TESTS=1 pytest sb_arch_opt --durations=0