diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2017-06-13 16:24:32 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2017-06-22 16:07:54 +0900 |
commit | b4786a3fe3d4695804bfde83be4f44e771814f8c (patch) | |
tree | 99183fb81a76fea39e32a8ceadfc45ca3fd0c809 | |
parent | ef212fe87ef1ab78da71c5a237cedb0393657111 (diff) |
CONTRIBUTING: Update procedure for running tests
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | CONTRIBUTING.rst | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 2fc9493b..93e1890f 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -22,9 +22,15 @@ style. Please check your changes with pep8 and run unittests to make sure that they don't break the existing features. The following command -does both for you: +does both for you. -fujita@rose:~/git/ryu$ ./run_tests.sh +.. code-block:: bash + + # Install dependencies of tests + $ pip install -r tools/test-requires + + # Execute unit tests and pep8 + $ ./run_tests.sh Of course, you are encouraged to add unittests when you add new features (it's not a must though). |