> https://bugzilla.redhat.com/show_bug.cgi?id=1779403 > https://bugzilla.redhat.com/show_bug.cgi?id=1779404 I checked your uploaded *.spec files now a little bit. I see that you are using "rake" in your rubygem-linked-list.spec, and there is no %check section in your rubygem-hrx.spec. > Note that we do not use "bundler" ("bundle" command) and "rake" command in RPM *.spec file. I am understanding that the reasons not using bundle and rake command in the RPM *.spec file are 1. to simplify the build dependency tree. 2. to debug the unit tests easily if you face an issue in the unit test logic. "bundle" and "rake" sometimes make you harder to debug, as they have their own issues. So, referring the Ruby guideline page - minitest and rspec test cases, your *.spec files could be like this. https://docs.fedoraproject.org/en-US/packaging-guidelines/Ruby/#_testing_frameworks_usage ## rubygem-linked-list.spec ``` ... BuildRequires: rubygem(minitest) ... %check pushd .%{gem_instdir} ruby -e 'Dir.glob "./test/**/*_test.rb", &method(:require)' popd ``` ## rubygem-hrx.spec ``` ... BuildRequires: rubygem(rspec) ... %check pushd .%{gem_instdir} rspec -Ilib spec popd ``` -- Jun | He - His - Him _______________________________________________ devel mailing list -- devel@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to devel-leave@xxxxxxxxxxxxxxxxxxxxxxx Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/devel@xxxxxxxxxxxxxxxxxxxxxxx