Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/buildbot/buildbot/test/test__versions.py
blob: a69fcc42512570535d686bd7e8730c124a9e66ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)