__init__.py 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # __init__.py -- Compatibility tests for dulwich
  2. # Copyright (C) 2010 Jelmer Vernooij <jelmer@jelmer.uk>
  3. #
  4. # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
  5. # Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
  6. # General Public License as public by the Free Software Foundation; version 2.0
  7. # or (at your option) any later version. You can redistribute it and/or
  8. # modify it under the terms of either of these two licenses.
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. # You should have received a copy of the licenses; if not, see
  17. # <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
  18. # and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
  19. # License, Version 2.0.
  20. #
  21. """Compatibility tests for Dulwich."""
  22. import unittest
  23. def test_suite():
  24. names = [
  25. "check_ignore",
  26. "client",
  27. "commit_graph",
  28. "dumb",
  29. "index",
  30. "pack",
  31. "patch",
  32. "porcelain",
  33. "repository",
  34. "server",
  35. "utils",
  36. "web",
  37. ]
  38. module_names = ["tests.compat.test_" + name for name in names]
  39. result = unittest.TestSuite()
  40. loader = unittest.TestLoader()
  41. suite = loader.loadTestsFromNames(module_names)
  42. result.addTests(suite)
  43. return result