Running pytest on modified filesCharles-Axel DeinMay 28, 2018today-i-learnedHere's a very crude way to run pytest only on files that were added or modified: pytest $(git ls-files --other --modified --exclude-standard | grep test)
Here's a very crude way to run pytest only on files that were added or modified: pytest $(git ls-files --other --modified --exclude-standard | grep test)