Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
beat.editor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
beat
beat.editor
Commits
23ce02fc
Commit
23ce02fc
authored
6 years ago
by
Samuel GAIST
Browse files
Options
Downloads
Patches
Plain Diff
[doc][contribute] Improve coding instructions
parent
7237e46f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/contribute.rst
+54
-0
54 additions, 0 deletions
doc/contribute.rst
doc/links.rst
+8
-1
8 additions, 1 deletion
doc/links.rst
with
62 additions
and
1 deletion
doc/contribute.rst
+
54
−
0
View file @
23ce02fc
...
@@ -74,6 +74,58 @@ If you would like to install them all using pip you can call: ::
...
@@ -74,6 +74,58 @@ If you would like to install them all using pip you can call: ::
$ pip install -r pre-commit-dependencies.txt
$ pip install -r pre-commit-dependencies.txt
Development
===========
Writing code
------------
beat.editor is a python application or rather Qt Python application. It will use
the `QtWidgets`_ module for the GUI part.
The current implementation will use `PyQt`_ as `Qt for Python`_ is not yet
available on conda.
While the code is written in Python the API is mostly the same as the C++
framework minus some pythonism that can be found in the `PyQt documentation`_.
Writing tests
-------------
beat.editor uses pytest as its testing framework because of the `pytest-qt`_
module that provides support for testing Qt based application.
An example of tests is shown here:
.. literalinclude:: ../beat/editor/test/test_editors.py
Tests can fall in to categories:
- Automatic tests
- Manual tests
Automatic tests are tests that can be fully automated using pytest and pytest-qt
while manual tests are tests than requires that a person takes a look at the
output of said test. For example check that the rendering of some GUI element is
the expected output. This kind of test may require writing a minimal application
that will be as automated as possible in order for the operator to only have to
do the manual check(s) required.
Run tests
---------
beat.editor uses pytest to run its test suite. ::
$ pytest -sv
Will run all the tests verbosely and not capture the outputs of the test. The
`-s` option is mandatory if there's a need to brake in the code using python's
debugger.
Coding guidelines
Coding guidelines
=================
=================
...
@@ -190,3 +242,5 @@ Merge message
...
@@ -190,3 +242,5 @@ Merge message
Merge messages should again be meaningful and concise about the what and the
Merge messages should again be meaningful and concise about the what and the
why.
why.
.. include:: links.rst
This diff is collapsed.
Click to expand it.
doc/links.rst
+
8
−
1
View file @
23ce02fc
...
@@ -19,4 +19,11 @@
...
@@ -19,4 +19,11 @@
.. _beat editor: https://www.idiap.ch/software/beat/docs/beat/docs/new/beat.editor/doc/index.html
.. _beat editor: https://www.idiap.ch/software/beat/docs/beat/docs/new/beat.editor/doc/index.html
.. _bob: https://www.idiap.ch/software/bob/docs/bob/docs/stable/bob/doc/index.html
.. _bob: https://www.idiap.ch/software/bob/docs/bob/docs/stable/bob/doc/index.html
.. _idiap: http://www.idiap.ch
.. _idiap: http://www.idiap.ch
.. _eigenface: https://en.wikipedia.org/wiki/Eigenface
.. _eigenface: https://en.wikipedia.org/wiki/Eigenface
\ No newline at end of file
.. _Qt: http://doc.qt.io/qt-5/
.. _QtWidgets: http://doc.qt.io/qt-5/qtwidgets-index.html
.. _Qt for python: https://www.qt.io/qt-for-python
.. _PyQt: https://www.riverbankcomputing.com/software/pyqt/intro
.. _PyQt documentation: http://pyqt.sourceforge.net/Docs/PyQt5/index.html
.. _pytest-qt: https://pytest-qt.readthedocs.io/en/latest/
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment