mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-10-29 18:07:27 +01:00
11 lines
565 B
YAML
11 lines
565 B
YAML
<%
|
|
rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : ""
|
|
rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}"
|
|
std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} --strict --tags ~@wip"
|
|
ignored_tags = "--tags ~@boot --tags ~@targets"
|
|
%>
|
|
default: <%= std_opts %> <%= ignored_tags %> features
|
|
boot: <%= std_opts %> --tags @boot features
|
|
wip: --tags @wip:3 --wip features
|
|
rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip
|