/testing

My place of studies about tests with pytest

Primary LanguagePythonMIT LicenseMIT

testing

My tests repository studies

Build Tests codecov

running tests - overview

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= .