Skip to content

Commit 442c8f0

Browse files
gavin-aguiarGavin AguiarAzureFunctionsPython
authored
Integration test fixes for CI pipeline (#1259)
* Revert "Added worker to pythonpath (#1215)" This reverts commit a60ef25. * Update Python SDK Version to 1.14.1b3 (#1232) * Update Python SDK Version to 1.14.1b3 * Update setup.py --------- Co-authored-by: AzureFunctionsPython <[email protected]> * Update Python Worker Version to 4.13.0 * Update Python Worker Version to 4.14.0 * Test fixes * Installing packages with -U * Install packages with updates * Adding python -m to pytest * Reverting change to codecov.yml --------- Co-authored-by: Gavin Aguiar <gavin@GavinPC> Co-authored-by: AzureFunctionsPython <[email protected]>
1 parent 78274ef commit 442c8f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.ci/e2e_integration_test/start-e2e.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Write-Host "--------------------------------------------------------------------
8888
Write-Host "Preparing E2E integration tests..." -ForegroundColor Green
8989
Write-Host "-----------------------------------------------------------------------------`n" -ForegroundColor Green
9090
python -m pip install -U pip
91-
pip install -e .[dev]
91+
python -m pip install -U -e .[dev]
9292
python setup.py build
9393
python setup.py extension
9494
Write-Host "-----------------------------------------------------------------------------`n" -ForegroundColor Green
@@ -97,5 +97,5 @@ Write-Host "--------------------------------------------------------------------
9797
Write-Host "Running E2E integration tests..." -ForegroundColor Green
9898
Write-Host "-----------------------------------------------------------------------------`n" -ForegroundColor Green
9999
$env:CORE_TOOLS_EXE_PATH = "$funcExePath"
100-
pytest --junitxml=e2e-integration-test-report.xml --reruns 4 tests/endtoend
100+
python -m pytest --junitxml=e2e-integration-test-report.xml --reruns 4 tests/endtoend
101101
Write-Host "-----------------------------------------------------------------------------`n" -ForegroundColor Green

0 commit comments

Comments
 (0)