Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/areal060781/python-katas

Python exercises
https://github.com/areal060781/python-katas

kata pytest tdd training unit-testing

Last synced: 1 day ago
JSON representation

Python exercises

Awesome Lists containing this project

README

        

### pytest
- pytest tests/pytest/
- pytest tests/pytest/test_bigger_is_greater.py -s -v
- pytest file.py::Class::test_case
- python -m pytest tests/pytest/test_test_bonappetit.py
- [Pytest guide](https://docs.pytest.org/en/7.1.x/how-to/usage.html)

### unittest
- python -m unittest tests/test_name.py
- python -m unittest discover
- python -m unittest discover -s tests
- python -m unittest discover -s tests -t src