Skip to content
Thiago Jacinto edited this page Mar 3, 2022 · 1 revision

Welcome to the TestGlossary wiki!

Commands

  • make install - install project dependencies from requirements.txt file
  • make test - execute all tests
  • make lint - use linter
  • make help - lists all Makefile commands

Project layout

Makefile      # Makefile with simplifications for project maintenance
mkdocs.yml    # MkDocs configuration file.
docs/
    index.md  # The documentation homepage.
    ...       # Other markdown pages, images and other documentation related files.
tests/
    ...       # Test related files should be here
testglossary/
    ...       # Main application files must be placed under this directory, following futher structure.
Clone this wiki locally