Probably a very basic question for bash experts but I have a test.sh script.. Which has things like
python -m pytest tests/foo.py
python -m pytest tests/bar.py
python -m pytest tests/foobar.py
I am trying to like just put all these in a for loop containing only [foo.py, bar.py.. ]
What would be the simplest way to do this?
