How to build a system that automatically tests the api interface every day

I have a django rest framework project that has some API interfaces exposed to users. Now we need to automatically test the correctness of these interfaces every day. Is there any way to do this?


this method is too many
1. You write a script in Python, quote the request module, initiate a request, get a response, determine whether it is correct, and then write the script as a scheduled task
2. Can be implemented in other languages, shell+curl,nodejs can do


the focus of the problem is daily automatic testing
that's a scheduled task.

Menu