diff --git a/env.ps1 b/env.ps1 index 57b4f65..5820c9b 100644 --- a/env.ps1 +++ b/env.ps1 @@ -35,8 +35,8 @@ # See https://github.com/PowerShell/PowerShell/issues/12218 Function Global:resetenv { rm -r venv; .\env.ps1 } -Function Global:dotidy { black src tests build.py } -Function Global:dolint { flake8 src tests build.py } +Function Global:dotidy { black src tests build.py run.py } +Function Global:dolint { flake8 src tests build.py run.py } Function Global:dotest { pytest -q -n auto -x -l --sw --hypothesis-profile=dev $args } Function Global:dotest_dev { pytest -vv -n 0 -x -l --sw --hypothesis-profile=dev $args } Function Global:dotest_ci { pytest -q -n auto --hypothesis-profile=ci } diff --git a/env.sh b/env.sh index ecda878..460e1fc 100644 --- a/env.sh +++ b/env.sh @@ -26,8 +26,8 @@ unset -f activate die setup resetenv() { rm -r venv; . ./env.sh; } -dotidy() { black src tests build.py; } -dolint() { flake8 src tests build.py; } +dotidy() { black src tests build.py run.py; } +dolint() { flake8 src tests build.py run.py; } dotest() { pytest -q -n auto -x -l --sw --hypothesis-profile=dev $@; } dotest_dev() { pytest -vv -n 0 -x -l --sw --hypothesis-profile=dev $@; } dotest_ci() { pytest -q -n auto --hypothesis-profile=ci; }