diff --git a/env.ps1 b/env.ps1 index b8a7802..b5d4721 100644 --- a/env.ps1 +++ b/env.ps1 @@ -25,9 +25,9 @@ If (Test-Path -Path venv\.stamp) { Activate } Else { Setup } -Function Global:tidy { black src tests } -Function Global:lint { flake8 src tests } -Function Global:test { pytest -q -n auto --hypothesis-profile=dev } -Function Global:test_ci { pytest -q -n auto --hypothesis-profile=ci } -Function Global:test_long { pytest -q -n auto --hypothesis-profile=long } -Function Global:check { tidy && lint && test } +Function Global:dotidy { black src tests } +Function Global:dolint { flake8 src tests } +Function Global:dotest { pytest -q -n auto --hypothesis-profile=dev } +Function Global:dotest_ci { pytest -q -n auto --hypothesis-profile=ci } +Function Global:dotest_long { pytest -q -n auto --hypothesis-profile=long } +Function Global:docheck { dotidy && dolint && dotest }