Django compatibility
See original GitHub issueThe Django test runner does all sorts of magic to set up a test database. For green to work with Django, it would have to hook into all that voodoo somehow.
Here’s a minimal django project you can use for tests: https://github.com/hjwp/Minimal-Django-project-with-model-test
to run green, use:
DJANGO_SETTINGS_MODULE=myproj.settings green
Issue Analytics
- State:
- Created 9 years ago
- Comments:9 (8 by maintainers)
Top Results From Across the Web
Django 4.1 release notes
Python compatibility¶. Django 4.1 supports Python 3.8, 3.9, 3.10, and 3.11 (as of 4.1.3). We highly recommend and only officially support ...
Read more >Django 3.0 release notes
Python compatibility¶. Django 3.0 supports Python 3.6, 3.7, 3.8, and 3.9 (as of 3.0.11). We highly recommend and only officially support the ...
Read more >Django 2.0 release notes
Python compatibility¶. Django 2.0 supports Python 3.4, 3.5, 3.6, and 3.7. We highly recommend and only officially support the latest release of ...
Read more >Django 4.0 release notes
Python compatibility¶. Django 4.0 supports Python 3.8, 3.9, and 3.10. We highly recommend and only officially support the latest release of each ...
Read more >Databases | Django documentation
PostgreSQL ; MariaDB; MySQL; Oracle; SQLite. There are also a number of database backends provided by third parties. Django attempts to support ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@pkrefta No problem. You can set the verbosity by adding a Green config file (see the bottom of the help; the section starts with
CONFIG FILES
.@CleanCut Thanks for django. I don’t want to open another to ask simple question - how can I set verbosity for DjangoRunner ? 😄