Skip to content

Commit

Permalink
Merge branch 'tox-for-unit-tests' into one-ruff-for-everything
Browse files Browse the repository at this point in the history
  • Loading branch information
RogerHYang committed Oct 6, 2024
2 parents 6f5e581 + cb0a85e commit e278ab0
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/python-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,14 +161,16 @@ jobs:
src/phoenix/
tests/unit/
tests/conftest.py
- run: find . -type l -delete
- name: Remove symbolic links (Non-Windows)
run: find . -type l -delete
if: runner.os != 'Windows'
- run: |
- name: Remove symbolic links (Windows)
run: |
Remove-Item src/phoenix/evals
Remove-Item src/phoenix/otel
shell: powershell
if: runner.os == 'Windows'
- name: Set up python ${{ matrix.py }}
- name: Set up Python ${{ matrix.py }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
Expand Down Expand Up @@ -229,16 +231,17 @@ jobs:
requirements/
src/phoenix/
tests/integration/
- name: Remove Symbolic Links (Non-Windows)
- name: Remove symbolic links (Non-Windows)
run: find . -type l -delete
if: runner.os != 'Windows'
- name: Remove Symbolic Links (Windows)
- name: Remove symbolic links (Windows)
run: |
Remove-Item src/phoenix/evals
Remove-Item src/phoenix/otel
shell: powershell
if: runner.os == 'Windows'
- uses: actions/setup-python@v5
- name: Set up Python ${{ matrix.py }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
- uses: astral-sh/setup-uv@v3
Expand Down

0 comments on commit e278ab0

Please sign in to comment.