Description: Removed some unnecessary test setup such as SimpleCov and minitest-reporters. diff --git a/test/helper.rb b/test/helper.rb index ed3133c6..4f5d4f1b 100644 --- a/test/helper.rb +++ b/test/helper.rb @@ -13,22 +13,10 @@ # - NOKOGIRI_GC: read more in test/test_memory_leak.rb # -require "simplecov" -SimpleCov.start do - add_filter "/test/" - enable_coverage :branch -end - $VERBOSE = true require "minitest/autorun" require "minitest/benchmark" -require "minitest/reporters" - -nokogiri_minitest_reporters_options = { color: true, slow_count: 10, detailed_skip: false } -nokogiri_minitest_reporters_options[:fast_fail] = true if ENV["NOKOGIRI_TEST_FAIL_FAST"] -puts "Minitest::Reporters options: #{nokogiri_minitest_reporters_options}" -Minitest::Reporters.use!(Minitest::Reporters::DefaultReporter.new(nokogiri_minitest_reporters_options)) require "fileutils" require "tempfile" ' value='switch'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/services/security-token.scm
AgeCommit message (Expand)Author
2021-07-03services: pcscd: Fix daemon signal handling...."pcscd" wouldn't handle SIGTERM as it inherit ignoring this signal (and others) from its parent shepherd; fork+exec-command restore signal handling. Fixes <https://issues.guix.gnu.org/45202>. * gnu/services/security-token.scm (pcscd)[start]: Use fork+exec-command to start "pcscd". Brice Waegeneire
2021-06-19services: pcscd: Cleanup socket when started....Otherwise when pcscd doesn't terminate properly (ie. receive a SIGKILL), it won't start again because of it's socket already existing. * gnu/services/security-token.scm (pcscd-shepherd-service)[start]: Remove existing socket file. Brice Waegeneire
2020-12-13gnu: htop: Update to 3.0.3....* gnu/packages/admin.scm (htop): Update to 3.0.3. Tobias Geerinckx-Rice
2020-12-12services: pcscd-shepherd-service: Fix PID file location....Fixes <http://issues.guix.gnu.org/45202>. * gnu/services/security-token.scm (pcscd-shepherd-service): Look for pcscd.pid in /run instead of /var/run. Reported by Raffael Stocker <r.stocker@mnet-mail.de>. Tobias Geerinckx-Rice