Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/antonio-gg-dev/python-kata-setup
- Owner: antonio-gg-dev
- License: mit
- Created: 2024-01-25T14:35:35.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-01-25T14:38:49.000Z (10 months ago)
- Last Synced: 2024-05-02T05:53:24.745Z (7 months ago)
- Language: Makefile
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```