diff --git a/.github/workflows/quick-regression.yml b/.github/workflows/quick-regression.yml index a4bb55dffc..bee8835e3f 100644 --- a/.github/workflows/quick-regression.yml +++ b/.github/workflows/quick-regression.yml @@ -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 diff --git a/tools/regression-tests/get-quick-list.py b/tools/regression-tests/get-quick-list.py index 61ae31a7b3..92f26b054b 100644 --- a/tools/regression-tests/get-quick-list.py +++ b/tools/regression-tests/get-quick-list.py @@ -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