[DRE-commits] [SCM] ruby-zoom.git branch, master, updated. debian/0.4.1-5

Gunnar Wolf gwolf at debian.org
Sun Aug 5 18:53:00 UTC 2012


The following commit has been merged in the master branch:
commit a8814772e21b8ce75d7c496aaf1237e33e31a881
Author: Gunnar Wolf <gwolf at debian.org>
Date:   Sun Aug 5 13:51:57 2012 -0500

    Disabled the execution of tests requiring network access
    
    * Team upload
    * Disabled the execution of tests requiring network access (Closes:
      #683153)

diff --git a/debian/changelog b/debian/changelog
index 3989046..4816622 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+ruby-zoom (0.4.1-5) unstable; urgency=low
+
+  * Team upload
+  * Disabled the execution of tests requiring network access (Closes:
+    #683153)
+
+ -- Gunnar Wolf <gwolf at debian.org>  Sun, 05 Aug 2012 13:48:53 -0500
+
 ruby-zoom (0.4.1-4) unstable; urgency=low
 
   * Team upload.
diff --git a/debian/ruby-tests.rake b/debian/ruby-tests.rake
index 94d8870..c7a1e6e 100644
--- a/debian/ruby-tests.rake
+++ b/debian/ruby-tests.rake
@@ -1,9 +1,13 @@
+# -*- coding: undecided -*-
 task :default => :test
 require 'rake/testtask'
 require 'rbconfig'
 
 Rake::TestTask.new do |t|
-  t.test_files = FileList['test/*_test.rb']
+  # Test files other than package_test.rb require network access (to
+  # z3950.loc.gov) (see bug #683153 — Thanks to Felix Geyer for the
+  # report and solution!)
+  t.test_files = FileList['test/package_test.rb']
   t.ruby_opts << '-I src' << '-rzoom' << '-rtest/unit'
   t.verbose = true
 end

-- 
ruby-zoom.git



More information about the Pkg-ruby-extras-commits mailing list