Disabling Inferred Commands

Scrutinizer by default infers testing and set-up commands for your project to make the set-up as easy and fast as possible. Sometimes, you would like to change or disable inferred commands. You can do that via configuration easily:

build:
  nodes:
    node-with-auto-setup:
      tests:          # This needs to be the section name like "tests", "dependencies", or "project_setup"
        override:
          - ./overridden-command.sh --with-different-option

          # if you just want to disable inferred commands, you can use the shell built-in "true"
          - true