File: entry

package info (click to toggle)
vim-ultisnips 3.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,924 kB
  • sloc: python: 8,353; sh: 64; makefile: 38
file content (13 lines) | stat: -rwxr-xr-x 299 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
set -e -u

case $(basename "$0") in
  with-vim) set -- vim.nox "$@" ;;
  with-neovim) set -- nvim "$@" ;;
esac

sesnum=$(tmux new-session -d -P -e LANGUAGE=en)
trap 'tmux kill-session -t "${sesnum}"' EXIT

export TMPDIR="$AUTOPKGTEST_TMP"
python3 test_all.py -v -s "=${sesnum}" --vim "$@"