Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/antonio-gg-dev/python-kata-setup

Generic setup for performing katas in Python featuring make and docker.
https://github.com/antonio-gg-dev/python-kata-setup

Last synced: about 1 month ago
JSON representation

Generic setup for performing katas in Python featuring make and docker.

Awesome Lists containing this project

README

        

# Python Kata Setup

This is a generic setup for performing katas in _Python_.
Once you start, you can replace this text with your specific kata instructions.

## Usage:

This setup uses _make_ and _docker_ to simplify the entire installation and usage process.

### help

Show all available _make_ commands.

```shell
make help
```

### build

Build the _docker_ container. **Run this once to start working with the project.**

```shell
make build
```

### version

Display the _Python_ version.

```shell
make version
```

### test

Run the tests.

```shell
make test
```

### coverage

Generates a code coverage report.

```shell
make coverage
```