瀏覽代碼

Mention how to run the tests in HACKING.

Jelmer Vernooij 14 年之前
父節點
當前提交
ee0ea663ba
共有 1 個文件被更改,包括 17 次插入2 次删除
  1. 17 2
      HACKING

+ 17 - 2
HACKING

@@ -1,7 +1,9 @@
+Coding style
+------------
 Where possible, please follow PEP8 with regard to coding style.
 
-Furthermore, triple-quotes should always be """, single quotes are ' unless using "
-would result in less escaping within the string.
+Furthermore, triple-quotes should always be """, single quotes are ' unless
+using " would result in less escaping within the string.
 
 All functionality should be available in pure Python. Optional C
 implementations may be written for performance reasons, but should never
@@ -9,3 +11,16 @@ replace the Python implementation. The C implementations should follow the
 kernel/git coding style.
 
 Where possible please include updates to NEWS along with your improvements.
+
+Running the tests
+-----------------
+To run the testsuite, you should be able to simply run "make check". This
+will run the tests using unittest on Python 2.7 and higher, and using
+unittest2 (which you will need to have installed) on older versions of Python.
+
+ $ make check
+
+Alternatively, if you have testtools installed you can run the testsuite by
+overriding the test runner:
+
+ $ make check TESTRUNNER=testtools.run