this repo has no description

Extend run script to support filtering.

+18
+18
run_tests.sh
··· 1 1 #!/bin/bash 2 2 cd "$(dirname "$0")" 3 + 4 + # Parse arguments 5 + while [[ $# -gt 0 ]]; do 6 + case "$1" in 7 + --filter | -f) 8 + export TEST_FILTER="$2" 9 + shift 2 10 + ;; 11 + --filter=*) 12 + export TEST_FILTER="${1#*=}" 13 + shift 14 + ;; 15 + *) 16 + shift 17 + ;; 18 + esac 19 + done 20 + 3 21 nvim --headless -c "lua require('vcmarkers_tests').run()" -c "q" 2>&1