From ba626dcad67a941a61d1b192cbf7a8325eb598c6 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Thu, 9 Aug 2018 15:39:15 -0700 Subject: [PATCH] tools: Move optimize-svg to tools/setup/. --- docs/testing/testing.md | 2 +- tools/{ => setup}/optimize-svg | 0 tools/test-all | 2 +- tools/travis/backend | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename tools/{ => setup}/optimize-svg (100%) diff --git a/docs/testing/testing.md b/docs/testing/testing.md index 82dd92ddfc..e342e1f361 100644 --- a/docs/testing/testing.md +++ b/docs/testing/testing.md @@ -86,7 +86,7 @@ Zulip also has about a dozen smaller tests suites: this helps prevent bugs that break the development environment. - `./tools/test-queue-worker-reload`: Verifies that Zulip's queue 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 third-party logos, this helps keep the Zulip codebase from getting huge). - `./tools/test-tools`: Automated tests for various parts of our diff --git a/tools/optimize-svg b/tools/setup/optimize-svg similarity index 100% rename from tools/optimize-svg rename to tools/setup/optimize-svg diff --git a/tools/test-all b/tools/test-all index a92942e12e..e725886e8e 100755 --- a/tools/test-all +++ b/tools/test-all @@ -45,7 +45,7 @@ run ./tools/test-backend $FORCEARG run ./tools/run-mypy $FORCEARG run ./tools/test-migrations # 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 # run ./tools/test-documentation run ./tools/test-help-documentation $FORCEARG diff --git a/tools/travis/backend b/tools/travis/backend index 8543e6946b..379df21239 100755 --- a/tools/travis/backend +++ b/tools/travis/backend @@ -16,7 +16,7 @@ set -x ./tools/run-mypy ./tools/test-migrations -./tools/optimize-svg +./tools/setup/optimize-svg ./tools/test-documentation ${CIRCLECI:+--skip-check-links} ./tools/test-help-documentation ./tools/test-api