mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-16 16:54:51 +02:00
34 lines
402 B
ReStructuredText
34 lines
402 B
ReStructuredText
|
Development
|
||
|
############
|
||
|
|
||
|
Code convention
|
||
|
===============
|
||
|
|
||
|
You should respect all the PEP8 convention except the
|
||
|
rule about max line length.
|
||
|
|
||
|
|
||
|
Documentation
|
||
|
==============
|
||
|
|
||
|
Build doc
|
||
|
----------
|
||
|
In the project root folder:
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
./documentation.sh
|
||
|
|
||
|
The output is available inside *docs/_build/html*
|
||
|
|
||
|
Tests
|
||
|
======
|
||
|
|
||
|
Run tests
|
||
|
----------
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
py.test -v
|
||
|
|