diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-17 20:43:08 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-17 20:43:08 -0800 |
| commit | 232b63ba9cf1c7e5126839f7e1df034e375114d6 (patch) | |
| tree | 6b8c26abb5343348a12bcff40ec85dcb960a606c /scripts/clean_test_env.sh | |
| parent | d7c1cc00abe7c8097625ee905a1285aa0794a598 (diff) | |
| download | neko-232b63ba9cf1c7e5126839f7e1df034e375114d6.tar.gz neko-232b63ba9cf1c7e5126839f7e1df034e375114d6.tar.bz2 neko-232b63ba9cf1c7e5126839f7e1df034e375114d6.zip | |
Prune dead E2E testing scripts and targets
Diffstat (limited to 'scripts/clean_test_env.sh')
| -rwxr-xr-x | scripts/clean_test_env.sh | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/scripts/clean_test_env.sh b/scripts/clean_test_env.sh deleted file mode 100755 index f6b6867..0000000 --- a/scripts/clean_test_env.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash -echo "Cleaning up test environment..." - -# Kill neko backend binary if running -pkill -x "neko" || true -pkill -x "neko_server" || true - -# Kill specific node processes related to vite/playwright -# We avoid pkill -f node to not kill the agent connection -pkill -f "vite" || true -pkill -f "playwright" || true - -# Kill anything on ports 4994 and 5173 and 9090 -fuser -k 4994/tcp || true -fuser -k 5173/tcp || true -fuser -k 9090/tcp || true - -# Remove test databases -rm -f neko_test.db .data/test.db - -echo "Cleanup complete." |
