Minitex is a command-line application for managing academic references in the BibTeX format. Created for the software engineering course Ohjelmistotuotanto at the University of Helsinki in autumn 2022.
Created by:
See the user manual for more information.
# Get the source code
$ git clone [email protected]:rikurauhala/minitex.git
# Change directory
$ cd minitex
# Install dependencies
$ poetry install
# Run the application
$ poetry run invoke start
# Alternative way to run
$ poetry shell
$ python src/index.py
# Run unit tests
$ poetry run invoke test
# Run user story tests
$ poetry run invoke robot
- Product Backlog
- User Story tests with acceptance criteria
- Continuous Integration
- Test Coverage Report
- User manual
- Architecture
- Course Finish Report
Program is planned well. Code is written with Python. Code tests are passed with 75% coverage. Program works as intended and user story tests are done and passed with Robot Framework. Code is documented. Continuous integration and delivery is used.