Nilesh Patra преди 3 години
родител
ревизия
7bdfdc9ce7
променени са 2 файла, в които са добавени 9 реда и са изтрити 2 реда
  1. 7 0
      debian/changelog
  2. 2 2
      debian/tests/testsuite3

+ 7 - 0
debian/changelog

@@ -1,3 +1,10 @@
+dulwich (0.20.31-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix variable name in testsuite (Closes: #1003017)
+
+ -- Nilesh Patra <nilesh@debian.org>  Sat, 29 Jan 2022 23:36:01 +0000
+
 dulwich (0.20.31-1) unstable; urgency=low
 
   * New upstream release.

+ 2 - 2
debian/tests/testsuite3

@@ -5,8 +5,8 @@ unset http_proxy
 unset https_proxy
 
 rv=0
-for py in $(py3versions -s); do
-  echo "========= Running tests with $py =========="
+for py3 in $(py3versions -s); do
+  echo "========= Running tests with $py3 =========="
   if ! $py3 -m unittest dulwich.tests.test_suite; then
     rv=1
   fi