Skip to content

Commit

Permalink
Update tempdir path
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Ryan <dan.ryan@canonical.com>
  • Loading branch information
techalchemy committed Apr 5, 2020
1 parent 64e03dc commit 807bd49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .azure-pipelines/steps/run-tests-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ steps:
displayName: Set RAMDisk Permissions
- powershell: |
Write-Host "##vso[task.setvariable variable=TEMP]R:\"
Write-Host "##vso[task.setvariable variable=TMP]R:\"
Write-Host "##vso[task.setvariable variable=TEMP]R:\temp"
Write-Host "##vso[task.setvariable variable=TMP]R:\temp"
Write-Host "##vso[task.setvariable variable=WORKON_HOME]R:\virtualenvs"
Write-Host "##vso[task.setvariable variable=PIPENV_DEFAULT_PYTHON_VERSION]$env:PYTHON_VERSION"
Write-Host "##vso[task.setvariable variable=PIPENV_NOSPIN]1"
Expand All @@ -47,7 +47,7 @@ steps:
git submodule sync
git submodule update --init --recursive
Write-Host "Running Command: pipenv run pytest -n 4 --junitxml=junit/test-results.xml --timeout 300 tests/"
$env:TEMP = "R:\Temp"
$env:TEMP = "R:\temp"
pipenv run pytest -ra -n 4 --timeout=300 --junit-xml=junit/test-results.xml tests/
failOnStderr: false
displayName: Run integration tests
Expand Down
3 changes: 0 additions & 3 deletions .azure-pipelines/steps/run-vendor-scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ steps:

- script: |
echo '##vso[task.setvariable variable=PIPENV_DEFAULT_PYTHON_VERSION]'$(python.version)
env:
PYTHONWARNINGS: 'ignore:DEPRECATION'

env:
PYTHON_VERSION: $(python.version)

Expand Down

0 comments on commit 807bd49

Please sign in to comment.