Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/areal060781/python-katas
- Owner: areal060781
- Created: 2020-11-09T20:45:36.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-05-31T19:15:24.000Z (6 months ago)
- Last Synced: 2024-05-31T20:37:00.344Z (6 months ago)
- Topics: kata, pytest, tdd, training, unit-testing
- Language: Python
- Homepage:
- Size: 2.11 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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