MitocGroup / recink

REciNK - Rethink Continuous Integration for JavaScript Applications
https://www.npmjs.org/package/recink
Mozilla Public License 2.0
14 stars 5 forks source link

Do not trigger tests execution if "plan | apply" option is set to false #127

Closed avozicov closed 6 years ago

avozicov commented 6 years ago

Expected result:

e.x.


  root: './rds_restore'
  terraform:
    version: 0.11.0
    plan: false                    - this option should skip execution for unit tests
    apply: false                   - this option should skip execution for e2e tests
    destroy: false
    test:
      mapping: './tests/mapping.json'
      plan: './tests/unit'         - test path is defined but tests should not be executed 
      apply: './tests/e2e'```      - test path is defined but tests should not be executed
avozicov commented 6 years ago

Test Passed Acceptance criteria:

eistrati commented 6 years ago

Checked.