diff --git a/.github/workflows/full-regression.yml b/.github/workflows/full-regression.yml index d1302836d3..821481567d 100644 --- a/.github/workflows/full-regression.yml +++ b/.github/workflows/full-regression.yml @@ -27,6 +27,7 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 2 + show-progress: false - name: Install extra packages run: | diff --git a/tools/regression-tests/get_quick_list.py b/tools/regression-tests/get_quick_list.py index 457137a7b9..9ebcce0aa2 100644 --- a/tools/regression-tests/get_quick_list.py +++ b/tools/regression-tests/get_quick_list.py @@ -278,3 +278,4 @@ if __name__ == "__main__": print("Minimize styles: ", styles['minimize']) print("Example input files affected: ", len(inputs)) + print("inputs: ", inputs.sort()) diff --git a/tools/regression-tests/run_tests.py b/tools/regression-tests/run_tests.py index e53fcc6126..21f79b66de 100644 --- a/tools/regression-tests/run_tests.py +++ b/tools/regression-tests/run_tests.py @@ -967,15 +967,13 @@ if __name__ == "__main__": # generate list of input scripts with commands that have been changed if quick: headers = get_quick_list.changed_files_from_git(quick_branch) - print("headers ", headers) styles = get_quick_list.get_command_from_header(headers, LAMMPS_DIR) - print("styles ", styles) regex = get_quick_list.make_regex(styles) - print("regex ", regex) if regex: if not example_toplevel: example_toplevel = os.path.join(LAMMPS_DIR, 'examples') input_list = get_quick_list.get_examples_using_styles(regex, example_toplevel) msg = f"\nThere are {len(input_list)} input scripts with changed styles relative to branch {quick_branch}." + msg += "\nChanged styles: " + str(styles) print(msg) logger.info(msg)