From b7ada3f0e0dc9df1865788f95b084b59c17fc89c Mon Sep 17 00:00:00 2001 From: nstelter-slac Date: Mon, 28 Oct 2024 20:13:27 -0700 Subject: [PATCH] DEV: install pytest-sugar for devs, which adds progress bar for tests and makes output much nicer imo. --- setup_developers.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup_developers.sh b/setup_developers.sh index ad80189..429f55d 100755 --- a/setup_developers.sh +++ b/setup_developers.sh @@ -6,12 +6,14 @@ # (as opposed to setup.sh which needs to be run each new terminal session) # dependencies used in tests + formatting/linting script -# (these might already be installed into the S3DF env, if so the following -# cmds should simply do nothing) +# (these might already be installed into the S3DF env, if so the following cmds should simply do nothing) pip install pytest pip install pillow pip install ruff +# nice output formatting for pytest +pip install pytest-sugar + # setup test_data submodule git submodule init git submodule update