apteryks

Results 426 comments of apteryks

OK, building using Guix after reinstating the test_collections.rb test with: ``` ./pre-inst-env guix build jekyll --no-grafts --check --with-branch=jekyll=4.3-stable ``` It succeeded 3 times in a row and failed the 4th...

The policy in Guix (and others such as Debian) is to run the test suites when available; running tests for packaging is actually quite useful to ensure the selected components...

> The tests require a number of different Redis server instances running. The project uses this script to install and test as part of their CI https://github.com/redis/redis-py/blob/e5e265de87dfe7ef8cc5cad8c247d067c74fa44d/.github/workflows/install_and_test.sh Hello, I see...

OK, after starting the redis server with `"redis-server" "--daemonize" "yes" "--protected-mode" "no" "--enable-debug-command" "yes"`, it's down to 5 failures: ``` =================================== FAILURES =================================== ______________________ TestRedisCommands.test_xautoclaim _______________________ self = r =...

Down to 3 failures with: ```scheme (add-before 'check 'start-redis (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "redis-server" "--daemonize" "yes" "--enable-debug-command" "yes" "--enable-module-command" "local")))) ``` ``` FAILED tests/test_commands.py::TestRedisCommands::test_xautoclaim - Assertion... FAILED...

Hello, and thanksfor the reply! I believe so, per the bake.gemspec file. I've found that if I use 'bundle exec' to run rspec, the 4 test failures disappear. Why could...

OK, I got bundler to run by removing the `bake-modernize`, `bake-gem`, `bake-github-pages` and `utopia-project` requirements from the `gems.rb` file. Still, it seems something is wrong with the installation as when...

The `bake-test` gem should be available in `GEM_PATH`, since it's listed as an input in the Guix package definition of `ruby-sus`: ```scheme (define-public ruby-sus (package (name "ruby-sus") (version "0.16.0") (source...

That's odd; from an environment setup with: `$ guix shell ruby ruby-bake ruby-bake-test ruby-pry` ``` [env]$ echo $GEM_PATH /gnu/store/55d17bxshp2h75w9yccw7h4h60d3igay-profile/lib/ruby/vendor_ruby [env]$ ruby -e 'require "bake/test"' && echo ok ok $ ll...

It seems the problem originates from https://github.com/ioquatix/bake/blob/main/lib/bake/loaders.rb#L102: ```ruby ::Gem.loaded_specs.each do |name, spec| ``` The `::Gem.loaded_specs` doesn't contain `bake-test` for some reason.