[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_
This commit is contained in:
amd-jmacaran
2025-03-20 15:36:10 -04:00
rodzic 6505639cf4
commit 805448261d
3 zmienionych plików z 7 dodań i 1 usunięć
@@ -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
Wyświetl plik
@@ -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
Wyświetl plik
@@ -1,5 +1,5 @@
import pytest
def TestHelloWorld():
def test_HelloWorld():
greeting = "Hello, World!"
assert greeting == "Hello, World!"