Skip to content

fix static paths

fix static paths #266

# name: test optimization
#
# on:
# push:
# branches:
# - dev
# pull_request:
# branches:
# - dev
#
# jobs:
# test:
# runs-on: ${{ matrix.os }}
# strategy:
# fail-fast: false
# matrix:
# os: [ ubuntu-latest ]
# python-version: [ "3.10", "3.11", "3.12" ]
# include:
# - os: windows-latest
# python-version: "3.10"
#
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
#
# - name: Setup Python ${{ matrix.python-version }}
# uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python-version }}
# cache: "pip"
#
# - name: Install dependencies
# run: |
# pip install .
# pip install pytest pytest-asyncio
#
# - name: Run tests
# run: |
# pytest tests/pipeline/test_optimization.py