tangled
alpha
login
or
join now
algmyr.se
/
vcmarkers.nvim
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
Extend run script to support filtering.
algmyr.se
1 month ago
72cacfb2
91280c68
+18
1 changed file
expand all
collapse all
unified
split
run_tests.sh
+18
run_tests.sh
···
1
1
#!/bin/bash
2
2
cd "$(dirname "$0")"
3
3
+
4
4
+
# Parse arguments
5
5
+
while [[ $# -gt 0 ]]; do
6
6
+
case "$1" in
7
7
+
--filter | -f)
8
8
+
export TEST_FILTER="$2"
9
9
+
shift 2
10
10
+
;;
11
11
+
--filter=*)
12
12
+
export TEST_FILTER="${1#*=}"
13
13
+
shift
14
14
+
;;
15
15
+
*)
16
16
+
shift
17
17
+
;;
18
18
+
esac
19
19
+
done
20
20
+
3
21
nvim --headless -c "lua require('vcmarkers_tests').run()" -c "q" 2>&1