summaryrefslogtreecommitdiff
path: root/.unittests
diff options
context:
space:
mode:
authorChmouel Boudjnah <chmouel@chmouel.com>2013-11-21 17:59:47 +0100
committerJohn Dickinson <me@not.mn>2013-11-21 14:09:47 -0800
commit64b976e139ecfeafa83889a9c6d6615d30ba5635 (patch)
tree004b28b0adc658847d4a76860ee81de266adc6eb /.unittests
parent3ac1ff77535e3d23ef92921e15058b35ff13e5f9 (diff)
downloadswift-bench-64b976e139ecfeafa83889a9c6d6615d30ba5635.tar.gz
Add plumbing.
- Update .gitignore to ignore all testrunners. - Move swift-bench to swiftbench. - Move tests to tests/ - Add some simple {test-,}requirements (more works needs to be done to get proper versioning) Change-Id: Iab4d65f02cbce8c99ecafa30d15c4cb11f0b4293
Diffstat (limited to '.unittests')
-rwxr-xr-x.unittests8
1 files changed, 8 insertions, 0 deletions
diff --git a/.unittests b/.unittests
new file mode 100755
index 0000000..bf5b027
--- /dev/null
+++ b/.unittests
@@ -0,0 +1,8 @@
+#!/bin/bash
+set -e
+
+python setup.py testr --coverage
+RET=$?
+coverage report -m
+rm -f .coverage
+exit $RET