Is it possible to disable inference completely in a Python project? I have already specified a test node in circle.yml which specifies how the project should be tested and don’t want the inference to be running other step (python manage.py test) which fails the build. How can I achieve this?
You can disable Inference in any project for any build phase by using override
in circle.yml
.
Thanks. I was doing -
test:
post:
- make test
But it should have been been
test:
override:
- make test
1 Like