[Django]-GitHub Actions not picking up Django tests

2👍

Don’t know if you have solved it by yourself, if so please share your solution. However, what I ran into when doing the same thing as you is that I had to specify the app that I wanted to test for it to work.

For example, if you have your app called "testapp" you need to do:

 run: |
          python ./api/manage.py test testapp 

Leave a comment