From 08c41b7206cf514b18fb151ad478e32fab949dfb Mon Sep 17 00:00:00 2001 From: Garret Wassermann Date: Tue, 19 Oct 2021 03:31:22 -0400 Subject: [PATCH] Really fix azure pipeline testing --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 41ba8364..33e9400f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -51,9 +51,9 @@ steps: from os import path # Python >= 3.5 quicktest_py = next(iglob(path.join('**', 'quicktest.py'), recursive=True), None) - if not manage_py: + if not quicktest_py: raise SystemExit('Could not find quicktest.py for django-helpdesk') - project_location = path.dirname(path.abspath(manage_py)) + project_location = path.dirname(path.abspath(quicktest_py)) print('Found quicktest.py in', project_location) print('##vso[task.setvariable variable=projectRoot]{}'.format(project_location))