| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Python Testing 101 with pytest - March 2019
This repository was for the March 2019 presentation at Python Frederick.
Our goal was to show off pytest and how to do automated testing in your projects.
Create a virtual environment to hold your local packages (i.e. pytest).
$ python3 -m venv venv
$ source venv/bin/activateInstall pytest from PyPI.
(venv) $ pip install pytestYou can run the tests for this project by running pytest.
$ pytest| Back | FazBrowse Home | New Git URL |