My tests repository studies
commands:
- command main
pytest
- specific
pytest <path>
- with previews of test files
pytest -v
- identifying test files without running them
pytest --collect-only (without running test)
- viewing test coverage
pytest --cov=<path> or pytest --cov= .