From f0842429b94219a868f4a294639b78459d0948ef Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Tue, 5 Jun 2018 18:26:02 -0700 Subject: [PATCH] Move testing scripts into testing --- .travis.yml | 4 ++-- get-swift.sh => testing/get-swift.sh | 0 latest-git.sh => testing/latest-git.sh | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename get-swift.sh => testing/get-swift.sh (100%) rename latest-git.sh => testing/latest-git.sh (100%) diff --git a/.travis.yml b/.travis.yml index 29b8a04b..84fd3f7d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,11 +19,11 @@ before_install: - git --version - | if [ "$LATEST_GIT" = "1" ]; then - ./latest-git.sh + testing/latest-git.sh export PATH="/tmp/git/bin:$PATH" fi - git --version - - './get-swift.sh && export PATH="/tmp/swift/usr/bin:$PATH"' + - 'testing/get-swift.sh && export PATH="/tmp/swift/usr/bin:$PATH"' - 'curl -sSf https://sh.rustup.rs | bash -s -- -y' - export PATH="$HOME/.cargo/bin:$PATH" after_success: coveralls diff --git a/get-swift.sh b/testing/get-swift.sh similarity index 100% rename from get-swift.sh rename to testing/get-swift.sh diff --git a/latest-git.sh b/testing/latest-git.sh similarity index 100% rename from latest-git.sh rename to testing/latest-git.sh