From f54ba4817e7f3289e27f4f1c2fc70a36437cfb6b Mon Sep 17 00:00:00 2001 From: Adam Outler Date: Thu, 29 Jan 2026 16:51:32 +0000 Subject: [PATCH] remove unused script --- .devcontainer/scripts/run-tests.sh | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100755 .devcontainer/scripts/run-tests.sh diff --git a/.devcontainer/scripts/run-tests.sh b/.devcontainer/scripts/run-tests.sh deleted file mode 100755 index 80eaf013..00000000 --- a/.devcontainer/scripts/run-tests.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# shellcheck shell=sh -# Simple helper to run pytest inside the devcontainer with correct paths -set -eu - -# Ensure we run from the workspace root -cd /workspaces/NetAlertX - -# Make sure PYTHONPATH includes server and workspace -export PYTHONPATH="/workspaces/NetAlertX:/workspaces/NetAlertX/server:/app:/app/server:${PYTHONPATH:-}" - -# Default to running the full test suite under /workspaces/NetAlertX/test -pytest -q --maxfail=1 --disable-warnings test "$@"