1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00

Retry up to 5 times for disk tests that sometimes fail

This commit is contained in:
Mark McDowall 2019-08-10 23:14:28 -07:00
parent 6ea047dcb4
commit f333196efe
2 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,7 @@ namespace NzbDrone.Common.Test.DiskTests
public abstract class DiskProviderFixtureBase<TSubject> : TestBase<TSubject> where TSubject : class, IDiskProvider
{
[Test]
[Retry(5)]
public void directory_exist_should_be_able_to_find_existing_folder()
{
Subject.FolderExists(TempFolder).Should().BeTrue();
@ -43,6 +44,7 @@ public void FolderWritable_should_return_true_for_writable_directory()
}
[Test]
[Retry(5)]
public void FolderWritable_should_return_false_for_unwritable_directory()
{
var tempFolder = GetTempFilePath();
@ -122,6 +124,7 @@ public void should_be_able_to_delete_directory_with_read_only_file()
}
[Test]
[Retry(5)]
public void empty_folder_should_return_folder_modified_date()
{
var tempfolder = new DirectoryInfo(TempFolder);

View File

@ -616,6 +616,7 @@ public void mode_transactional_should_remove_partial_if_move_fails()
}
[Test]
[Retry(5)]
public void CopyFolder_should_copy_folder()
{
WithRealDiskProvider();