Incorporating make test into rasa test

I am using rasa test for testing my bot but using make test for my custom actions. Is there a way I can incorporate make test into rasa test so that when I run rasa test, it automatically tests my custom actions?

Thanks.

Hi @laboratory , what does your make test command do? If it’s unit-testing your actions, that’s fine, and should be kept separate from testing the bot’s predictions.

Running rasa test only tests prediction of NLU intents/entities and of next actions. It won’t and can’t run your custom actions.

If I misunderstood the question and you’re looking for a CI pipeline that runs both your action unit tests (make test) and rasa test, you can take a look here: Setting up CI/CD

1 Like

Awesome. Thank you. You actually understood my question right.