Skip to content

fix bug for evaluating noise automatically for redundants points with noisy output when the inputs are mixed categorical #872

fix bug for evaluating noise automatically for redundants points with noisy output when the inputs are mixed categorical

fix bug for evaluating noise automatically for redundants points with noisy output when the inputs are mixed categorical #872

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.11"]
include:
- os: ubuntu-latest
python-version: "3.10"
- os: ubuntu-latest
python-version: "3.9"
steps:
- uses: actions/checkout@v4
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Python info
run: python --version
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
- name: Test with pytest
run: pytest smt --durations=0