[Azure CI] Minor environment setup fixes

- Add extra deletion to ensure source workspace is clean for the job.
- pytest expects function names to start with test_
Этот коммит содержится в:
amd-jmacaran
2025-03-20 15:36:10 -04:00
родитель 6505639cf4
Коммит 805448261d
3 изменённых файлов: 7 добавлений и 1 удалений
+3
Просмотреть файл
@@ -41,6 +41,9 @@ jobs:
workspace:
clean: all
steps:
- task: DeleteFiles@1
inputs:
Contents: '**/*'
- template: ${{ variables.CI_TEMPLATE_PATH }}/steps/checkout.yml@pipelines_repo
parameters:
submoduleBehaviour: recursive
+3
Просмотреть файл
@@ -46,6 +46,9 @@ stages:
workspace:
clean: all
steps:
- task: DeleteFiles@1
inputs:
Contents: '**/*'
- template: ${{ variables.CI_TEMPLATE_PATH }}/steps/checkout.yml@pipelines_repo
parameters:
submoduleBehaviour: recursive
+1 -1
Просмотреть файл
@@ -1,5 +1,5 @@
import pytest
def TestHelloWorld():
def test_HelloWorld():
greeting = "Hello, World!"
assert greeting == "Hello, World!"