How to speed up pytest

前端 未结 7 648
醉梦人生
醉梦人生 2020-12-09 01:14

Is there some way to speed up the repeated execution of pytest? It seems to spend a lot of time collecting tests, even if I specify which files to execute on th

7条回答
  •  北海茫月
    2020-12-09 01:28

    In bash, try { find -name '*_test.py'; find -name 'test_*.py'; } | xargs pytest.

    For me, this brings total test time down to a fraction of a second.

提交回复
热议问题