actually honor the branch argument

This commit is contained in:
Axel Kohlmeyer
2024-08-22 16:50:03 -04:00
parent dc4e4988a9
commit bda862a3a2
2 changed files with 1 additions and 4 deletions

View File

@ -68,7 +68,4 @@ jobs:
- name: Run Selected Regression Tests
shell: bash
run: |
git branch
git branch -r
git diff origin/develop..HEAD
python3 tools/regression-tests/get-quick-list.py

View File

@ -31,7 +31,7 @@ def changed_files_from_git(branch='develop'):
# get list of changed files relative to the develop branch from git
output = None
try:
output = subprocess.run('git diff --diff-filter=MA --name-status develop',
output = subprocess.run('git diff --diff-filter=MA --name-status ' + branch,
shell=True, capture_output=True)
except:
pass