Skip to content

eemilhaa/ot-harjoitustyo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

9c892b0 · Jul 12, 2022
Apr 26, 2022
May 15, 2022
Apr 3, 2022
May 15, 2022
Apr 12, 2022
May 13, 2022
May 13, 2022
May 13, 2022
Apr 12, 2022
May 15, 2022
Jul 12, 2022
May 13, 2022
May 13, 2022
Apr 9, 2022

Repository files navigation

ot-harjoitustyo

This repository hosts my project for the software technology course - a simple platformer game written in python with pygame.

Releases

Documentation

Setup

This project uses poetry for managing dependencies. Install dependencies:

poetry install 

Available CLI commands

Running the program

Run the program with:

poetry run invoke start

Testing

Tests can be run with:

poetry run invoke test

A report of test coverage can be generated with:

poetry run invoke coverage-report

The report can be found in the htmlcov directory.

Linting

Code linting with pylint can be done with:

poetry run invoke lint

Formatting

You can format the code using autopep8 with:

poetry run invoke format