~ubuntu-branches/ubuntu/utopic/lazygal/utopic

« back to all changes in this revision

Viewing changes to lazygaltest/__init__.py

  • Committer: Package Import Robot
  • Author(s): Michal Čihař, Michal Čihař, Jakub Wilk
  • Date: 2013-06-06 12:05:08 UTC
  • mfrom: (1.2.13)
  • Revision ID: package-import@ubuntu.com-20130606120508-e3g94vl8w9pw7za7
Tags: 0.8-1
[ Michal Čihař ]
* New upstream release.
  - Uses new Genshi templates (Closes: #696682).
  - Correctly handles wronly encoded artist in EXIF (Closes: #696648).
  - Uses GExiv2 (LP: #1074028).
* Depend on GExiv2 instead of pyexiv2.
* Bump standards to 3.9.4.
* Use debhelper 9.

[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.

Show diffs side-by-side

added added

removed removed

Lines of Context:
139
139
    import glob
140
140
    suitelist = []
141
141
    for fn in glob.glob(os.path.join(os.path.dirname(__file__),
142
 
                                           "test_*.py")):
 
142
                                     "test_*.py")):
143
143
        module_path = '.'.join(['lazygaltest', os.path.basename(fn[:-3])])
144
144
        m = my_import(module_path)
145
145
        suitelist.append(unittest.defaultTestLoader.loadTestsFromModule(m))
146
 
    runner = unittest.TextTestRunner(verbosity = 2)
 
146
    runner = unittest.TextTestRunner(verbosity=2)
147
147
    runner.run(unittest.TestSuite(suitelist))
148
148
 
149
149