Skip to content

Commit 7964384

Browse files
committed
WIP
Signed-off-by: Shizuo Fujita <fujita@clear-code.com>
1 parent 0cadce0 commit 7964384

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ jobs:
3535
- name: Run Benchmark
3636
shell: bash # Use bash shell on all platforms
3737
run: |
38-
bundle exec rake benchmark:run:in_tail >> $GITHUB_STEP_SUMMARY
38+
bundle exec rake benchmark:run:in_tail | tee >(cat) >> $GITHUB_STEP_SUMMARY

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Rake::TestTask.new(:base_test) do |t|
3838
else
3939
tests = Dir["test/**/test_*.rb"].sort
4040
if Process.uid.zero?
41-
puts "test_file_util.rb for non-root user env. Disable this test on root environment"
41+
puts "test_file_util.rb for non-root user env. Disable this test on root environment" unless ENV['CI']
4242
tests.delete("test/plugin/test_file_util.rb")
4343
end
4444
tests

0 commit comments

Comments
 (0)