__init__.py 1.0 KB

12345678910111213141516171819202122232425262728
  1. # __init__.py -- Contrib module for Dulwich
  2. # Copyright (C) 2014 Jelmer Vernooij <jelmer@samba.org>
  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. def test_suite():
  20. import unittest
  21. names = [
  22. 'swift',
  23. ]
  24. module_names = ['dulwich.contrib.test_' + name for name in names]
  25. loader = unittest.TestLoader()
  26. return loader.loadTestsFromNames(module_names)