File tree 3 files changed +31
-3
lines changed
spec/failing_spec_detector
3 files changed +31
-3
lines changed Original file line number Diff line number Diff line change 23
23
run : bundle exec rake rubocop
24
24
- name : Run tests
25
25
run : bundle exec rake spec
26
+ - name : Upload Logs
27
+ uses : actions/upload-artifact@v3
28
+ with :
29
+ name : Logs
30
+ path : failing_specs_detector_log_*.txt
31
+
32
+ print_log :
33
+ name : Test print logs task
34
+ needs : test
35
+ runs-on : ubuntu-latest
36
+
37
+ steps :
38
+ - uses : actions/checkout@v3
39
+ - name : Set up Ruby
40
+ uses : ruby/setup-ruby@v1
41
+ with :
42
+ ruby-version : 2.7.2
43
+ bundler-cache : true
44
+ - name : Download Logs
45
+ uses : actions/download-artifact@v3
46
+ with :
47
+ name : Logs
48
+ - name : Run print_log task
49
+ run : bundle exec rake failing_specs_detector:print_log
50
+
Original file line number Diff line number Diff line change 9
9
10
10
# rspec failure tracking
11
11
.rspec_status
12
+
13
+ # log file
14
+ failing_specs_detector_log_ * .txt
Original file line number Diff line number Diff line change 54
54
example
55
55
end
56
56
57
- after do
58
- File . delete ( actual_file_path )
59
- end
57
+ # after do
58
+ # File.delete(actual_file_path)
59
+ # end
60
60
61
61
it 'prints the failing specs backtraces grouped by exception' do
62
62
mock_run_specs
You can’t perform that action at this time.
0 commit comments