Skip to content

Latest commit

 

History

History
51 lines (33 loc) · 1.27 KB

README.md

File metadata and controls

51 lines (33 loc) · 1.27 KB

🐍 Python TDD Boilerplate

🧑‍🏭 Setup

Pyenv > Makefile

After pyenv installation, run this in this directory:

pyenv install 3.10.9

Set default Python version for current directory:

pyenv local 3.10.9

Basic setup to use pipenv.

python -m pip install -U pip && pip install pipenv

This project includes make commands to make your life easier.

sudo apt-get install make

Install all the dependencies, and generates a virtual environment.

make setup

🧑‍💻 Commands

Run make help to see all available commands.

📚 Testing libraries

💩 Troubleshooting