diff --git a/.github/workflows/quick-regression.yml b/.github/workflows/quick-regression.yml index b8fe12ba14..a4bb55dffc 100644 --- a/.github/workflows/quick-regression.yml +++ b/.github/workflows/quick-regression.yml @@ -24,7 +24,6 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 with: - ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 show-progress: false @@ -69,4 +68,7 @@ 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 44f6d90770..61ae31a7b3 100644 --- a/tools/regression-tests/get-quick-list.py +++ b/tools/regression-tests/get-quick-list.py @@ -258,10 +258,9 @@ if __name__ == "__main__": regex = make_regex(styles) if regex: inputs = get_examples_using_styles(regex, os.path.join(LAMMPS_DIR,'examples')) - - print("Suggested inputs for testing:") - for inp in inputs: - print(inp) + print("Suggested inputs for testing:") + for inp in inputs: + print(inp) print(type(make_regex(styles))) print("Found changes to the following styles:")