DEV Community

Execute Django tests in your github actions

Guillermo Alfonso Morales on January 12, 2020

When you are trying github actions with your django project, and your database is for example, PostgreSQL, could be a problem running tests in the ...
Collapse
 
barnettdalean profile image
Dalean Barnett

How about service containers? Building an application that depends on PostgreSQL and then executing tests based on Sqlite could pose a problem.

Collapse
 
sabderemane profile image
Sarah Abd

Haha I've faced to the same problem and I've got another solution, I write an article on that also : dev.to/s_abderemane/how-to-use-doc...

Collapse
 
gamorales profile image
Guillermo Alfonso Morales

I was thinking in docker for a second post, you won 😊

Thanks for the feedback.