Kiln » Dependencies » Dulwich Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master

Add 'make check-compat'.

Changeset 3aee61cb7dbd

Parent fd8208ca430b

by Jelmer Vernooij

Changes to 2 files · Browse files at 3aee61cb7dbd Showing diff from parent fd8208ca430b Diff from another changeset...

Change 1 of 1 Show Entire File Makefile Stacked
 
33
34
35
 
 
 
36
37
38
 
33
34
35
36
37
38
39
40
41
@@ -33,6 +33,9 @@
 check-nocompat:: build   $(RUNTEST) dulwich.tests.nocompat_test_suite   +check-compat:: build + $(RUNTEST) dulwich.tests.compat_test_suite +  check-pypy:: clean   $(MAKE) check-noextensions PYTHON=pypy  
 
161
162
163
 
 
 
 
 
 
 
164
165
166
 
161
162
163
164
165
166
167
168
169
170
171
172
173
@@ -161,6 +161,13 @@
  return result     +def compat_test_suite(): + result = unittest.TestSuite() + from dulwich.tests.compat import test_suite as compat_test_suite + result.addTests(compat_test_suite()) + return result + +  def test_suite():   result = unittest.TestSuite()   result.addTests(self_test_suite())