tools: Move optimize-svg to tools/setup/.

This commit is contained in:
Tim Abbott 2018-08-09 15:39:15 -07:00
parent c2e5cc99a4
commit ba626dcad6
4 changed files with 3 additions and 3 deletions

View File

@ -86,7 +86,7 @@ Zulip also has about a dozen smaller tests suites:
this helps prevent bugs that break the development environment. this helps prevent bugs that break the development environment.
- `./tools/test-queue-worker-reload`: Verifies that Zulip's queue - `./tools/test-queue-worker-reload`: Verifies that Zulip's queue
processors properly reload themselves after code changes. processors properly reload themselves after code changes.
- `./tools/optimize-svg`: Checks whether all SVG files for integration - `./tools/setup/optimize-svg`: Checks whether all SVG files for integration
logos are properly optimized for size (since we're not going to edit logos are properly optimized for size (since we're not going to edit
third-party logos, this helps keep the Zulip codebase from getting huge). third-party logos, this helps keep the Zulip codebase from getting huge).
- `./tools/test-tools`: Automated tests for various parts of our - `./tools/test-tools`: Automated tests for various parts of our

View File

@ -45,7 +45,7 @@ run ./tools/test-backend $FORCEARG
run ./tools/run-mypy $FORCEARG run ./tools/run-mypy $FORCEARG
run ./tools/test-migrations run ./tools/test-migrations
# Not running SVG optimizing since it's low-churn # Not running SVG optimizing since it's low-churn
# run ./tools/optimize-svg # run ./tools/setup/optimize-svg
# Not running documentation tests since it takes 20s and only tests documentation # Not running documentation tests since it takes 20s and only tests documentation
# run ./tools/test-documentation # run ./tools/test-documentation
run ./tools/test-help-documentation $FORCEARG run ./tools/test-help-documentation $FORCEARG

View File

@ -16,7 +16,7 @@ set -x
./tools/run-mypy ./tools/run-mypy
./tools/test-migrations ./tools/test-migrations
./tools/optimize-svg ./tools/setup/optimize-svg
./tools/test-documentation ${CIRCLECI:+--skip-check-links} ./tools/test-documentation ${CIRCLECI:+--skip-check-links}
./tools/test-help-documentation ./tools/test-help-documentation
./tools/test-api ./tools/test-api