Index: bin/run_tests
===================================================================
--- bin/run_tests	(revision 1)
+++ bin/run_tests	(revision 10)
@@ -3,5 +3,5 @@
 # Run the tests for the postman package
 
-import os, sys, unittest
+import os, shutil, sys, unittest
 
 try:
@@ -13,4 +13,9 @@
     except ImportError:
         raise SystemExit('Could not find postman on your filesystem')
-    
-unittest.main()
+
+try:
+    unittest.main()
+finally:
+    # FIXME: hardcoded path to the tmp directory, we should read this path
+    # from postman/tests/postman.conf
+    shutil.rmtree('/tmp/postman-tests')
