Can you disable "Test" entirely?

My circle.yml contains:

test:
override: []

it “succeeds” however, after the build is completed is turns red and displays “No Tests”… What is the proper way to specify that there are NO tests to run?

Found this works:

test:
  override:
    - echo "done"

Taken from this answer:

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.