From 4c814bbe154f0232df4680c6f121c540c9990465 Mon Sep 17 00:00:00 2001 From: Roy Crihfield Date: Fri, 26 May 2023 14:19:17 +0800 Subject: [PATCH] rm old script --- scripts/run_unit_test.sh | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100755 scripts/run_unit_test.sh diff --git a/scripts/run_unit_test.sh b/scripts/run_unit_test.sh deleted file mode 100755 index c90add64..00000000 --- a/scripts/run_unit_test.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash - -# Remove any existing containers / volumes -docker-compose down --remove-orphans --volumes - -# Spin up DB and run migrations -docker-compose up -d migrations ipld-eth-db -sleep 30 - -# Run unit tests -go clean -testcache -PGPASSWORD=password DATABASE_USER=vdbm DATABASE_PORT=8077 DATABASE_PASSWORD=password DATABASE_HOSTNAME=127.0.0.1 DATABASE_NAME=vulcanize_testing make test - -# Clean up -docker-compose down --remove-orphans --volumes -rm -rf out/