Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ninghu committed Jan 7, 2025
1 parent d352938 commit e6d80c5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/promptflow-executor-e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ on:
- .github/workflows/promptflow-executor-e2e-test.yml
workflow_dispatch:
env:
PF_DISABLE_TRACING: "false"
packageSetupType: promptflow_with_extra
testWorkingDirectory: ${{ github.workspace }}/src/promptflow
PYTHONPATH: ${{ github.workspace }}/src/promptflow
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/promptflow-executor-unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ permissions:
id-token: write
contents: read
env:
PF_DISABLE_TRACING: "false"
packageSetupType: promptflow_with_extra
testWorkingDirectory: ${{ github.workspace }}/src/promptflow
PYTHONPATH: ${{ github.workspace }}/src/promptflow
Expand Down
4 changes: 4 additions & 0 deletions src/promptflow/tests/executor/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import multiprocessing
import os
from pathlib import Path

import pytest
Expand Down Expand Up @@ -39,6 +40,9 @@ def is_replay():
return False


# Enable tracing for testing
os.environ["PF_DISABLE_TRACING"] = False

PROMPTFLOW_ROOT = Path(__file__) / "../../.."


Expand Down

0 comments on commit e6d80c5

Please sign in to comment.