From 920e172f9ff3d8eb0ee9807efaa41ec987d09e9c Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Tue, 7 Oct 2025 12:51:07 +0300 Subject: [PATCH] Migrate test to dev:test in standalone script --- mise.toml | 6 ------ scripts/dev/test | 11 +++++++++++ 2 files changed, 11 insertions(+), 6 deletions(-) create mode 100755 scripts/dev/test diff --git a/mise.toml b/mise.toml index 4cf55a09..6da5743d 100644 --- a/mise.toml +++ b/mise.toml @@ -13,9 +13,3 @@ gh = 'latest' [task_config] includes = ["scripts"] - -# DEVELOPMENT/TEST - -[tasks.test] -description = 'Run project tests' -run = 'mix test' diff --git a/scripts/dev/test b/scripts/dev/test new file mode 100755 index 00000000..fe0332f4 --- /dev/null +++ b/scripts/dev/test @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +#MISE description="Run project tests" + +set -e + +source "$(dirname "$0")/../_helpers.sh" + +ensure_working_directory! + +mix test