Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-10-08Enable even more frozen string in lib/**/*.rbgfyoung
Enables frozen string for the following files: * lib/generators/**/*.rb * lib/gitaly/**/*.rb * lib/google_api/**/*.rb * lib/haml_lint/**/*.rb * lib/json_web_token/**/*.rb * lib/mattermost/**/*.rb * lib/microsoft_teams/**/*.rb * lib/object_storage/**/*.rb * lib/omni_auth/**/*.rb * lib/peek/**/*.rb * lib/rouge/**/*.rb * lib/rspec_flaky/**/*.rb * lib/system_check/**/*.rb Partially addresses #47424.
2018-06-01Eliminate constants warnings by:Lin Jen-Shin
* Replace `require` or `require_relative` with `require_dependency` * Remove unneeded `autoload`
2018-04-10Improve the architecture of RspecFlaky classes by introducing a new ↵Rémy Coutable
RspecFlaky::Report class Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-04-10Introduce RspecFlaky::ExamplesPruner to prune old flaky examplesRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-10-06Add new RSpecFlaky::FlakyExamplesCollection and RSpecFlaky::Config classesRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-10-04Ensure RSpecFlaky doesn't automatically update flaky examplesRémy Coutable
Previously, instantiating a RspecFlaky::FlakyExample object would automatically update its first_flaky_at, last_flaky_at and last_flaky_job. That was wrong because we would overwrite every time the suite report with this false data. We now: - Get the suite report and only read from it - Write only the currently detected flaky examples in the report, so that the final report is only updated with flaky examples that were actually detected in each job. Before, job1 could overwrite the legit report from job2! - Write the newly detected flaky examples by rejecting the already tracked flaky specs instead of using another hash. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-08-11Use a new RspecFlakyListener to detect flaky specsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>