From e381caad2fa14ab3635fdba66590cd531c90e8a7 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Mon, 4 May 2020 16:40:24 -0400 Subject: [PATCH] Move test scripts into scripts directory (#485) I'm planning on adding a some scripts for managing node and python binaries and I don't want to clutter up the top level any more. --- .circleci/config.yml | 12 ++++++------ test.bat => scripts/test.bat | 0 test.py => scripts/test.py | 0 test.sh => scripts/test.sh | 0 4 files changed, 6 insertions(+), 6 deletions(-) rename test.bat => scripts/test.bat (100%) rename test.py => scripts/test.py (100%) rename test.sh => scripts/test.sh (100%) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8db4aa7..bd9708c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -35,8 +35,8 @@ jobs: - run: name: Install debian packages command: apt-get update -q && apt-get install -q -y cmake build-essential openjdk-8-jre-headless - - run: ./test.sh - - run: ./test.py + - run: scripts/test.sh + - run: scripts/test.py test-mac: macos: xcode: "9.0" @@ -53,8 +53,8 @@ jobs: - run: name: Install python 3 command: brew install python3 - - run: ./test.sh - - run: ./test.py + - run: scripts/test.sh + - run: scripts/test.py test-windows: executor: name: win/vs2019 @@ -75,8 +75,8 @@ jobs: - run: name: Install latest shell: cmd.exe - command: test.bat - - run: python test.py + command: scripts\test.bat + - run: python scripts/test.py workflows: flake8: diff --git a/test.bat b/scripts/test.bat similarity index 100% rename from test.bat rename to scripts/test.bat diff --git a/test.py b/scripts/test.py similarity index 100% rename from test.py rename to scripts/test.py diff --git a/test.sh b/scripts/test.sh similarity index 100% rename from test.sh rename to scripts/test.sh