diff --git a/fish/.config/fish/functions/ffcov.fish b/fish/.config/fish/functions/ffcov.fish new file mode 100644 index 0000000..6aa46c1 --- /dev/null +++ b/fish/.config/fish/functions/ffcov.fish @@ -0,0 +1,6 @@ +function ffcov + pushd ~/src/ff/fifteen5 + docker-compose exec app coverage run manage.py test -k ff.mods.$argv + docker-compose exec app coverage combine + popd +end diff --git a/fish/.config/fish/functions/ffcovreport.fish b/fish/.config/fish/functions/ffcovreport.fish new file mode 100644 index 0000000..14a0d8c --- /dev/null +++ b/fish/.config/fish/functions/ffcovreport.fish @@ -0,0 +1,6 @@ +function ffcovreport + pushd ~/src/ff/fifteen5 + docker-compose exec app coverage report -m $argv + popd +end + diff --git a/fish/.config/fish/functions/ffsh.fish b/fish/.config/fish/functions/ffsh.fish new file mode 100644 index 0000000..3de9c3a --- /dev/null +++ b/fish/.config/fish/functions/ffsh.fish @@ -0,0 +1,5 @@ +function ffsh + pushd ~/src/ff/fifteen5 + docker-compose exec app bash + popd +end