Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: third_party/buildbot_7_12/buildbot/test/test__versions.py

Issue 12207158: Bye bye buildbot 0.7.12. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1
2 # This is a fake test which just logs the version of Twisted, to make it
3 # easier to track down failures in other tests.
4
5 from twisted.trial import unittest
6 from twisted.python import log
7 from twisted import copyright
8 import sys
9 import buildbot
10
11 class Versions(unittest.TestCase):
12 def test_versions(self):
13 log.msg("Python Version: %s" % sys.version)
14 log.msg("Twisted Version: %s" % copyright.version)
15 log.msg("Buildbot Version: %s" % buildbot.version)
16
OLDNEW
« no previous file with comments | « third_party/buildbot_7_12/buildbot/test/subdir/emit.py ('k') | third_party/buildbot_7_12/buildbot/test/test_bonsaipoller.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698