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.
This commit is contained in:
Sam Clegg
2020-05-04 16:40:24 -04:00
committed by GitHub
parent 64d54b832f
commit e381caad2f
4 changed files with 6 additions and 6 deletions

View File

@@ -35,8 +35,8 @@ jobs:
- run: - run:
name: Install debian packages name: Install debian packages
command: apt-get update -q && apt-get install -q -y cmake build-essential openjdk-8-jre-headless command: apt-get update -q && apt-get install -q -y cmake build-essential openjdk-8-jre-headless
- run: ./test.sh - run: scripts/test.sh
- run: ./test.py - run: scripts/test.py
test-mac: test-mac:
macos: macos:
xcode: "9.0" xcode: "9.0"
@@ -53,8 +53,8 @@ jobs:
- run: - run:
name: Install python 3 name: Install python 3
command: brew install python3 command: brew install python3
- run: ./test.sh - run: scripts/test.sh
- run: ./test.py - run: scripts/test.py
test-windows: test-windows:
executor: executor:
name: win/vs2019 name: win/vs2019
@@ -75,8 +75,8 @@ jobs:
- run: - run:
name: Install latest name: Install latest
shell: cmd.exe shell: cmd.exe
command: test.bat command: scripts\test.bat
- run: python test.py - run: python scripts/test.py
workflows: workflows:
flake8: flake8: