tools: Remove `.py` extensions from user scripts.

This commit is contained in:
derAnfaenger 2017-10-09 12:00:05 +02:00 committed by Tim Abbott
parent df948c7ea5
commit 61aebd036f
6 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ run ./tools/test-migrations
# run ./tools/optimize-svg
# Not running documentation tests since it takes 20s and only tests documentation
# run ./tools/test-documentation
run ./tools/test-help-documentation.py $FORCEARG
run ./tools/test-help-documentation $FORCEARG
run ./tools/test-api
# Not running run-dev tests locally; we never have
# run ./tools/test-run-dev

View File

@ -18,7 +18,7 @@ set -x
./tools/test-migrations
./tools/optimize-svg
./tools/test-documentation
./tools/test-help-documentation.py
./tools/test-help-documentation
./tools/test-api
#./tools/test-run-dev # Disabled in CI because flaky.
#./tools/test-queue-worker-reload # Disabled in CI because flaky.

View File

@ -21,7 +21,7 @@ def profiled(func):
Then view the results like this:
./tools/show-profile-results.py test_ratelimit_decrease.profile
./tools/show-profile-results test_ratelimit_decrease.profile
"""
@wraps(func)