summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorChristian Kampka <chris@emerge-life.de>2011-02-28 20:17:51 +0100
committerChristian Kampka <chris@emerge-life.de>2011-02-28 20:17:51 +0100
commit85040c63b8059bbce8bb4e204aa36a700df95c85 (patch)
tree9946352cf4fa97991aa6f45e6839372c768a8af6 /setup.cfg
parenta8200b24700b372eab579ca9144ea2ff6fa4b814 (diff)
downloadtesttools-85040c63b8059bbce8bb4e204aa36a700df95c85.tar.gz
* Fixes TestCommand import and reexports it from the testtools package
* Adds a sample setup.cfg configuration for the distutils TestCommand to demonstrate the proper usage of the command and so that ``python setup.py test`` may actually do something useful by default
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg6
1 files changed, 6 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..b3b8a0e
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,6 @@
+[test]
+test_module = testtools.tests
+;test_suite = testtools.tests.test_suite
+;failfast=1
+buffer=1
+catch=1