File: run_tests.sh

package info (click to toggle)
gcalcli 4.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,376 kB
  • sloc: python: 4,135; makefile: 10; sh: 7
file content (9 lines) | stat: -rwxr-xr-x 220 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#!/bin/bash

BATS="./tests/cli/bats/bin/bats"
if [ ! -f $BATS ]; then
  echo "FAILED to run cli tests: Missing bats runner!" >&2
  echo "(Did you forget to run 'git submodule update --init'?)" >&2
  exit 1
fi
$BATS "$@"