Skip to content

Aleksipa/Lukuvinkkisovellus

Repository files navigation

neverstopthemadness

Lukuvinkki

Lukuvinkki is an app for saving books and videos you might want to refer to later on.

Motivation

This app is a course work for University of Helsinki course on software production.

Progress

Development progress can be followed at Product Backlog

App can be tested at lukuvinkkisovellus.herokuapp.com

Test coverage report can be found here.

Project report can be found here.

Developing

Definition of Done:

  • Code has been peer-reviewed
  • Code has unit testing
  • Code has user level testing if applicable
  • Code passes tests
  • Code has been integrated to app, and app still passes all tests
  • Code has been pushed to Heroku and is part of the accessible app

The project uses Pipenv for dependency management. Make sure it is installed. Development dependencies can be installed by running

pipenv install --dev

A shell to the created virtualenv can be started by running

pipenv shell

All following commands must be run inside the virtualenv.

Unit tests

Python package

Tests can be run with the script run-tests.sh. To also report test coverage pass --cov=application argument to run-tests.sh.

Feature tests

Feature tests can be run with the script run-feature-tests.sh.