Skip to content

Latest commit

 

History

History
63 lines (40 loc) · 1.01 KB

README.md

File metadata and controls

63 lines (40 loc) · 1.01 KB

fdbk

Build Status

Backend and DB wrapper for feedback collection system.

Installation

Run:

pip install fdbk

to install from PyPI or download this repository and run

python setup.py install

to install from sources.

Usage

See examples directory for example use cases.

Running the server

Launch development server to port 8080 with:

fdbk-server -p 8080

See fdbk-server --help for other options.

Testing

Check and automatically fix formatting with:

pycodestyle fdbk
autopep8 -aaar --in-place fdbk

Run static analysis with:

pylint -E --enable=invalid-name,unused-import,useless-object-inheritance fdbk

Run unit tests with command:

python3 -m unittest discover -s tst/

Get test coverage with commands:

coverage run --branch --source fdbk/ -m unittest discover -s tst/
coverage report -m