Skip to content

Commit

Permalink
Really fix azure pipeline testing
Browse files Browse the repository at this point in the history
  • Loading branch information
gwasser committed Oct 19, 2021
1 parent 8e63283 commit 08c41b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 08c41b7

Please sign in to comment.