Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
bcb7a995
Commit
bcb7a995
authored
Apr 10, 2018
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use RspecFlaky::Report in scripts/prune-old-flaky-specs
Signed-off-by:
Rémy Coutable
<
remy@rymai.me
>
parent
b11e8875
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
20 deletions
+6
-20
scripts/prune-old-flaky-specs
scripts/prune-old-flaky-specs
+6
-20
No files found.
scripts/prune-old-flaky-specs
View file @
bcb7a995
#!/usr/bin/env ruby
require
'bundler/setup'
Bundler
.
require
(
:default
)
require_relative
'../lib/rspec_flaky/flaky_examples_collection'
require_relative
'../lib/rspec_flaky/examples_pruner'
require_relative
'../lib/rspec_flaky/report'
report_file
=
ARGV
.
shift
unless
report_file
...
...
@@ -13,21 +9,11 @@ unless report_file
end
new_report_file
=
ARGV
.
shift
||
report_file
DAYS_THRESHOLD
=
90
def
days_from_now
(
days
)
Time
.
now
-
(
3600
*
24
*
days
)
end
report
=
RspecFlaky
::
Report
.
load
(
report_file
)
puts
"Loading
#{
report_file
}
..."
collection
=
RspecFlaky
::
FlakyExamplesCollection
.
new
(
JSON
.
parse
(
File
.
read
(
report_file
)))
puts
"Current report has
#{
collection
.
size
}
entries."
new_collection
=
RspecFlaky
::
ExamplesPruner
.
new
(
collection
).
prune_examples_older_than
(
days_from_now
(
DAYS_THRESHOLD
))
puts
"Current report has
#{
report
.
size
}
entries."
puts
"New report has
#{
new_collection
.
size
}
entries:
#{
collection
.
size
-
new_collection
.
size
}
entries older than
#{
DAYS_THRESHOLD
}
days were removed."
new_report
=
report
.
prune_outdated
File
.
write
(
new_report_file
,
JSON
.
pretty_generate
(
new_collection
.
to_report
))
puts
"Saved
#{
new_report_file
}
."
puts
"New report has
#{
new_report
.
size
}
entries:
#{
report
.
size
-
new_report
.
size
}
entries older than 90 days were removed."
puts
"Saved
#{
new_report_file
}
."
if
new_report
.
write
(
new_report_file
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment