Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blankscreen-exe/django-tdd-workshop
https://github.com/blankscreen-exe/django-tdd-workshop
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/blankscreen-exe/django-tdd-workshop
- Owner: Blankscreen-exe
- Created: 2024-02-21T11:54:18.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-05T07:01:16.000Z (10 months ago)
- Last Synced: 2024-03-05T16:17:51.031Z (10 months ago)
- Language: Python
- Size: 11.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Django-TDD-Workshop
### Resource
- [Harry Percival - Introduction to TDD with Django - PyCon 2018](https://www.youtube.com/watch?v=_rLPDxpXIFc&list=PLE-U1jn4wS02YkS4uHmGEbwUdaWTWG4Uv)
- [Obey The Testing Goat](https://www.obeythetestinggoat.com/)
- [Django tests with nose and coverage](https://medium.com/@Zaccc123/django-tests-with-nose-and-coverage-dff5d3633b4b)
- [Django testing docs](https://django-testing-docs.readthedocs.io/en/latest/coverage.html#coverage-reports)### Notes
- change `collection` import in `venv/lib/python3.10/site-packages/nose/suite.py` to
```py
import collections
collections.Callable = collections.abc.Callable
```