This is the code kata template for python created by Aula de Software Libre de la Universidad de Córdoba
You can use this repository as a template or open it directly by clicking here:
Codespace install all dependencies automatically, if you prefer to install locally follow these steps:
Press the button "Use this template" and create a new repository on your space.
Clone locally your repository.
This template uses uv package manager.
To install it you can follow the official installation manual.
You can install running this:
curl -LsSf https://astral.sh/uv/install.sh | sh
If uv
command does not works is because it requires $HOME/.cargo/bin
into your $PATH
.
Run this and/or add to your shell config script:
export PATH=$HOME/.cargo/bin:$PATH
And install requirements
uv sync
uv run pytest
You can also use tests runner in your IDE.