File: run_build

package info (click to toggle)
ruby-rspec-rails 8.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,820 kB
  • sloc: ruby: 10,902; sh: 199; makefile: 6
file content (21 lines) | stat: -rwxr-xr-x 466 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
# This file is manually managed unlike the rest of core rspec gems because it is independent.

set -e
source script/functions.sh

fold "binstub check" check_binstubs

fold "specs" run_specs_and_record_done

fold "acceptance" bin/rake acceptance --trace

if is_ruby_3_2_plus; then
  fold "snippets" script/run_snippets.sh
fi

if documentation_enforced; then
  fold "doc check" check_documentation_coverage
fi

fold "one-by-one specs" run_specs_one_by_one