We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cadce0 commit 7964384Copy full SHA for 7964384
.github/workflows/benchmark.yml
@@ -35,4 +35,4 @@ jobs:
35
- name: Run Benchmark
36
shell: bash # Use bash shell on all platforms
37
run: |
38
- bundle exec rake benchmark:run:in_tail >> $GITHUB_STEP_SUMMARY
+ bundle exec rake benchmark:run:in_tail | tee >(cat) >> $GITHUB_STEP_SUMMARY
Rakefile
@@ -38,7 +38,7 @@ Rake::TestTask.new(:base_test) do |t|
else
39
tests = Dir["test/**/test_*.rb"].sort
40
if Process.uid.zero?
41
- puts "test_file_util.rb for non-root user env. Disable this test on root environment"
+ puts "test_file_util.rb for non-root user env. Disable this test on root environment" unless ENV['CI']
42
tests.delete("test/plugin/test_file_util.rb")
43
end
44
tests
0 commit comments