Code Kata Python Template
This is the code kata template for python created by Aula de Software Libre de la Universidad de Córdoba
Step 1. Use this repository as a template
Press the button "Use this template" and create a new repository on your space.
Step 2. Clone the repository
Clone locally your repository.
Step 3. Install requirements (optional)
We are using virtualenv
for it. You can install it with pip
:
pip install virtualenv
To create the virtual environment with python3
and activate it:
virtualenv -p python3 venv
source venv/bin/activate
And install requirements
pip install -r requirements.txt
Step 4. Execute test
python -m unittest