/tdd-python

"Python Testing with pytest"

Primary LanguagePython

tdd-python

pytest codecov

Requirements

  • OS
$ sw_vers
ProductName:    Mac OS X
ProductVersion: 10.15.5
BuildVersion:   19F101
  • Software Versions
    • Python 3.9.0
    • Poetry 1.1.4

Environment Setup

  • git clone
git clone git@github.com:nukopy/tdd-python.git
  • install Python packages with Poetry
cd tdd-python
python -m venv venv
source venv/bin/activate
pip install -U pip
poetry install
  • execute tests
make test