Sha256: e9cc7023b139e622569402fbd4e73bb1d044e6861e2d20954f1437d055692fbe

Contents?: true

Size: 613 Bytes

Versions: 2

Compression:

Stored size: 613 Bytes

Contents

default: &default
  threads: 1
  env:
    - FOO='123'

cucumber: &cucumber
  framework: cucumber
  profiles: []
  options: &options
    - --publish-quiet
    - --format pretty
    - --format html --out tmp/cucumber_result.html
  env:
    - FOO='123'
    - BAZ='something'

rspec: &rspec
  framework: rspec
  options:
    - --options config/.rspec
    - --format progress
    - --format documentation
    - --format html --out tmp/rspec_result.html
  env:
    - FOO='123'
    - BAZ='something'

ci_specs:
  <<: *rspec
  env:
    - CI='1'

ci_cukes:
  <<: *cucumber
  env:
    - CI='1'
  profiles:
    - regression

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
specimen-0.0.3.alpha lib/specimen/generator/project/templates/root/config/specimen.yml.tt
specimen-0.0.2.alpha lib/specimen/generator/project/templates/root/config/specimen.yml.tt