diff options
| author | Aarni Koskela <akx@iki.fi> | 2022-10-27 15:14:36 +0300 |
|---|---|---|
| committer | Ivan Kanakarakis <ivan.kanak@gmail.com> | 2022-11-15 13:06:41 +0200 |
| commit | fc84d5103a0ede07d1f371a4c85f2abaf0f8f3c0 (patch) | |
| tree | 8477fcba4d0ddf1b43b767163d7fd6203fd34046 /script | |
| parent | 15f131d08a0905662bc578d1d9c7d8fa8d8fda43 (diff) | |
| download | pysaml2-fc84d5103a0ede07d1f371a4c85f2abaf0f8f3c0.tar.gz | |
Run flynt -tc + black + isort
Diffstat (limited to 'script')
| -rwxr-xr-x | script/utility/run_list_of_tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/utility/run_list_of_tests.py b/script/utility/run_list_of_tests.py index 08abb9ce..2b01781a 100755 --- a/script/utility/run_list_of_tests.py +++ b/script/utility/run_list_of_tests.py @@ -5,6 +5,6 @@ from subprocess import call for line in fileinput.input(): - cmd = "./run_oper.sh " + line.rstrip() - print("executing " + cmd) + cmd = f"./run_oper.sh {line.rstrip()}" + print(f"executing {cmd}") call(cmd, shell=True) |
