2
0

__init__.py 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # __init__.py -- The tests for dulwich
  2. # Copyright (C) 2007 James Westby <jw+debian@jameswestby.net>
  3. #
  4. # This program is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU General Public License
  6. # as published by the Free Software Foundation; version 2
  7. # of the License or (at your option) any later version of
  8. # the License.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  18. # MA 02110-1301, USA.
  19. """Tests for Dulwich."""
  20. import unittest
  21. # XXX: Ideally we should allow other test runners as well,
  22. # but unfortunately unittest doesn't have a SkipTest/TestSkipped
  23. # exception.
  24. from nose import SkipTest as TestSkipped
  25. def test_suite():
  26. names = [
  27. 'client',
  28. 'fastexport',
  29. 'file',
  30. 'index',
  31. 'lru_cache',
  32. 'objects',
  33. 'object_store',
  34. 'pack',
  35. 'patch',
  36. 'protocol',
  37. 'repository',
  38. 'server',
  39. 'web',
  40. ]
  41. module_names = ['dulwich.tests.test_' + name for name in names]
  42. result = unittest.TestSuite()
  43. loader = unittest.TestLoader()
  44. suite = loader.loadTestsFromNames(module_names)
  45. result.addTests(suite)
  46. return result