promptflow-sdk-cli-test #9442
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: promptflow-sdk-cli-test | |
on: | |
schedule: | |
- cron: "40 18 * * *" # Every day starting at 2:40 BJT | |
pull_request: | |
paths: | |
- src/promptflow-core/** | |
- src/promptflow-devkit/** | |
- src/promptflow/** | |
- src/promptflow-tracing/** | |
- scripts/building/** | |
- .github/workflows/promptflow-sdk-cli-test.yml | |
workflow_dispatch: | |
env: | |
packageSetupType: promptflow_with_extra | |
testWorkingDirectory: ${{ github.workspace }}/src/promptflow | |
PYTHONPATH: ${{ github.workspace }}/src/promptflow | |
IS_IN_CI_PIPELINE: "true" | |
RECORD_DIRECTORY: ${{ github.workspace }}/src/promptflow-recording | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Display and Set Environment Variables | |
run: | | |
env | sort >> $GITHUB_OUTPUT | |
id: display_env | |
shell: bash -el {0} | |
- name: Python Setup - ubuntu-latest - Python Version 3.9 | |
uses: "./.github/actions/step_create_python_environment" | |
with: | |
pythonVersion: 3.9 | |
- name: Build wheel | |
uses: "./.github/actions/step_sdk_setup" | |
with: | |
setupType: promptflow_with_extra | |
scriptPath: ${{ env.testWorkingDirectory }} | |
- name: Upload Wheel | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: wheel | |
path: | | |
${{ github.workspace }}/src/promptflow/dist/*.whl | |
${{ github.workspace }}/src/promptflow-tools/dist/*.whl | |
sdk_cli_tests: | |
needs: build | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
pythonVersion: ['3.8', '3.9', '3.10', '3.11'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: set test mode | |
run: echo "PROMPT_FLOW_TEST_MODE=$(if [[ "${{ github.event_name }}" == "pull_request" ]]; then echo replay; else echo live; fi)" >> $GITHUB_ENV | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Display and Set Environment Variables | |
run: | | |
env | sort >> $GITHUB_OUTPUT | |
id: display_env | |
shell: bash -el {0} | |
- name: Python Setup - ${{ matrix.os }} - Python Version ${{ matrix.pythonVersion }} | |
uses: "./.github/actions/step_create_python_environment" | |
with: | |
pythonVersion: ${{ matrix.pythonVersion }} | |
- name: Download Artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: wheel | |
path: artifacts | |
- name: Install wheel | |
shell: pwsh | |
working-directory: artifacts | |
run: | | |
Set-PSDebug -Trace 1 | |
pip install -r ${{ github.workspace }}/src/promptflow/dev_requirements.txt | |
pip install ${{ github.workspace }}/src/promptflow-tracing | |
pip install ${{ github.workspace }}/src/promptflow-core | |
pip install ${{ github.workspace }}/src/promptflow-devkit[pyarrow] | |
pip install ${{ github.workspace }}/src/promptflow | |
gci ./promptflow-tools -Recurse | % {if ($_.Name.Contains('.whl')) {python -m pip install $_.FullName}} | |
pip freeze | |
- name: install recording | |
run: | | |
pip install vcrpy | |
pip install . | |
working-directory: ${{ env.RECORD_DIRECTORY }} | |
- name: Azure login (non pull_request workflow) | |
if: github.event_name != 'pull_request' | |
uses: azure/login@v1 | |
with: | |
creds: ${{ secrets.AZURE_CREDENTIALS }} | |
- name: generate live test resources (non pull_request workflow) | |
if: github.event_name != 'pull_request' | |
uses: "./.github/actions/step_generate_configs" | |
with: | |
targetFolder: ${{ env.testWorkingDirectory }} | |
- name: generate live test resources (pull_request workflow) | |
if: github.event_name == 'pull_request' | |
shell: pwsh | |
working-directory: ${{ env.testWorkingDirectory }} | |
run: | | |
cp ${{ github.workspace }}/src/promptflow/dev-connections.json.example ${{ github.workspace }}/src/promptflow/connections.json | |
- name: Run SDK CLI Test | |
shell: pwsh | |
working-directory: ${{ env.testWorkingDirectory }} | |
run: | | |
python "../../scripts/building/run_coverage_tests.py" ` | |
-p promptflow ` | |
-t ${{ github.workspace }}/src/promptflow/tests/sdk_cli_test ` | |
-l eastus ` | |
-m "unittest or e2etest" ` | |
--coverage-config ${{ github.workspace }}/src/promptflow/tests/sdk_cli_test/.coveragerc ` | |
-o "${{ env.testWorkingDirectory }}/test-results-sdk-cli.xml" ` | |
--ignore-glob ${{ github.workspace }}/src/promptflow/tests/sdk_cli_test/e2etests/test_executable.py | |
- name: Install pf executable | |
shell: pwsh | |
working-directory: artifacts | |
run: | | |
Set-PSDebug -Trace 1 | |
pip install ${{ github.workspace }}/src/promptflow-devkit[pyarrow,executable] | |
pip freeze | |
- name: Run SDK CLI Executable Test | |
shell: pwsh | |
working-directory: ${{ env.testWorkingDirectory }} | |
run: | | |
python "../../scripts/building/run_coverage_tests.py" ` | |
-p promptflow ` | |
-t ${{ github.workspace }}/src/promptflow/tests/sdk_cli_test/e2etests/test_executable.py ` | |
-l eastus ` | |
-m "unittest or e2etest" ` | |
-o "${{ env.testWorkingDirectory }}/test-results-sdk-cli-executable.xml" | |
- name: Run PFS Test | |
shell: pwsh | |
working-directory: ${{ env.testWorkingDirectory }} | |
run: | | |
python "../../scripts/building/run_coverage_tests.py" ` | |
-p promptflow ` | |
-t ${{ github.workspace }}/src/promptflow/tests/sdk_pfs_test ` | |
-l eastus ` | |
-m "e2etest" ` | |
--coverage-config ${{ github.workspace }}/src/promptflow/tests/sdk_pfs_test/.coveragerc ` | |
-o "${{ env.testWorkingDirectory }}/test-results-pfs.xml" | |
- name: Upload Test Results | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Test Results (Python ${{ matrix.pythonVersion }}) (OS ${{ matrix.os }}) | |
path: | | |
${{ env.testWorkingDirectory }}/*.xml | |
${{ env.testWorkingDirectory }}/htmlcov/ | |
${{ env.testWorkingDirectory }}/tests/sdk_cli_test/count.json | |
publish-test-results-sdk-cli-test: | |
needs: sdk_cli_tests | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write | |
pull-requests: write | |
contents: read | |
issues: read | |
if: always() | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Publish Test Results | |
uses: "./.github/actions/step_publish_test_results" | |
with: | |
testActionFileName: promptflow-sdk-cli-test.yml | |
testResultTitle: SDK CLI Test Result | |
osVersion: ubuntu-latest | |
pythonVersion: 3.9 | |
coverageThreshold: 40 | |
context: test/sdk_cli |