Testing inference not being overrided

Hi, I have created a build process with a circle.yml file, however I override the test section and on my build it keeps showing that the test section is being inferenced, here is my circle.yml

machine:
  services:
    - docker

dependencies:
  override:
    - curl -L -o ~/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.5rc1/jq-linux-x86_64-static && chmod +x ~/bin/jq
    - bash ./bin_deploy/aws_set.sh
    - bash ./bin_deploy/build.sh

deployment:
  prod:
    branch: ["master"]
    commands: 
    - bash ./bin_deploy/deploy.sh

test:
  override:
    - echo "true"
  post:
    - echo "true" 

Here is the image that proves it’s being inferenced:

I have also tried, by changing the test commands directly on the build configuration and it keeps giving the same error, any help?