Revision e837d4ca3b34dee31057961ca237d5e0c25c9dbf authored by Bryce Boe on 28 March 2018, 06:54:21 UTC, committed by Bryce Boe on 28 March 2018, 06:54:21 UTC
1 parent 7b5b3e0
Raw File
profile_tests.sh
#!/bin/bash -e

python -m cProfile -o profile $(which py.test)

python -c "import pstats; p = pstats.Stats('profile'); \
p.sort_stats('tottime').print_stats(64)"

rm -f profile




exit 0;
back to top