Skip to content

Commit dc88bc5

Browse files
committed
Wip
1 parent c8558b7 commit dc88bc5

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
lines changed

.github/workflows/ci.yml

+25
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,28 @@ jobs:
2323
run: bundle exec rake rubocop
2424
- name: Run tests
2525
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+

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@
99

1010
# rspec failure tracking
1111
.rspec_status
12+
13+
# log file
14+
failing_specs_detector_log_*.txt

spec/failing_spec_detector/failing_spec_formatter_spec.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@
5454
example
5555
end
5656

57-
after do
58-
File.delete(actual_file_path)
59-
end
57+
# after do
58+
# File.delete(actual_file_path)
59+
# end
6060

6161
it 'prints the failing specs backtraces grouped by exception' do
6262
mock_run_specs

0 commit comments

Comments
 (0)