Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/buildbot/buildbot/test/test__versions.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildbot/buildbot/test/test__versions.py')
-rw-r--r--buildbot/buildbot/test/test__versions.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/buildbot/buildbot/test/test__versions.py b/buildbot/buildbot/test/test__versions.py
new file mode 100644
index 0000000..a69fcc4
--- /dev/null
+++ b/buildbot/buildbot/test/test__versions.py
@@ -0,0 +1,16 @@
+
+# This is a fake test which just logs the version of Twisted, to make it
+# easier to track down failures in other tests.
+
+from twisted.trial import unittest
+from twisted.python import log
+from twisted import copyright
+import sys
+import buildbot
+
+class Versions(unittest.TestCase):
+ def test_versions(self):
+ log.msg("Python Version: %s" % sys.version)
+ log.msg("Twisted Version: %s" % copyright.version)
+ log.msg("Buildbot Version: %s" % buildbot.version)
+