File: ruby-test

package info (click to toggle)
hub 2.14.2~ds1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,376 kB
  • sloc: sh: 1,049; ruby: 857; makefile: 89
file content (17 lines) | stat: -rwxr-xr-x 332 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash
set -e

if [ -z "$GITHUB_ACTIONS" ] && tmux -V; then
  if [ -n "$CI" ]; then
    git --version
    bash --version | head -1
    zsh --version
    echo
  fi
  profile="all"
else
  echo "warning: skipping shell completion tests (install tmux to enable)" >&2
  profile="default"
fi

bin/cucumber -p "$profile" "$@"