Skip to content

Fix setting partition selection field in utility analysis result #1655

Fix setting partition selection field in utility analysis result

Fix setting partition selection field in utility analysis result #1655

Workflow file for this run

name: tests-pipelinedp
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
linting:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.dev.txt
- name: Check formatting
run: |
yapf --diff --recursive pipeline_dp tests analysis
test:
runs-on: ${{ matrix.os }}
needs: [linting]
strategy:
fail-fast: false
max-parallel: 3
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.dev.txt
- name: Run pytest
run: |
pytest tests analysis/tests