diff --git a/Unit Tests/Kyoo-InternalAPI/Library-Tests.cs b/Unit Tests/Kyoo-InternalAPI/Library-Tests.cs
deleted file mode 100644
index b3c061ff..00000000
--- a/Unit Tests/Kyoo-InternalAPI/Library-Tests.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using Kyoo.InternalAPI;
-using Microsoft.Extensions.Configuration;
-using NUnit.Framework;
-
-namespace UnitTests.Kyoo_InternalAPI
-{
- public class LibraryTests
- {
- private IConfiguration config;
- private ILibraryManager libraryManager;
-
- [SetUp]
- public void Setup()
- {
- config = new ConfigurationBuilder()
- .AddJsonFile("appsettings.json")
- .Build();
- libraryManager = new LibraryManager(config);
- }
- }
-}
diff --git a/Unit Tests/Kyoo-InternalAPI/Thumbnails-Tests.cs b/Unit Tests/Kyoo-InternalAPI/Thumbnails-Tests.cs
deleted file mode 100644
index 8229a107..00000000
--- a/Unit Tests/Kyoo-InternalAPI/Thumbnails-Tests.cs
+++ /dev/null
@@ -1,40 +0,0 @@
-using Kyoo.InternalAPI;
-using Kyoo.InternalAPI.ThumbnailsManager;
-using Kyoo.Models;
-using Microsoft.Extensions.Configuration;
-using NUnit.Framework;
-using System.Diagnostics;
-using System.IO;
-using System.Linq;
-using System.Threading.Tasks;
-
-namespace UnitTests.Kyoo_InternalAPI
-{
- public class ThumbnailsTests
- {
- private IConfiguration config;
-
- [SetUp]
- public void Setup()
- {
- config = new ConfigurationBuilder()
- .AddJsonFile("appsettings.json")
- .Build();
- }
-
- [Test]
- public async Task DownloadShowImages()
- {
- LibraryManager library = new LibraryManager(config);
- ThumbnailsManager manager = new ThumbnailsManager(config);
- Show show = library.GetShowBySlug(library.GetShows().FirstOrDefault().Slug);
- Debug.WriteLine("&Show: " + show.Path);
- string posterPath = Path.Combine(show.Path, "poster.jpg");
- File.Delete(posterPath);
-
- await manager.Validate(show);
- long posterLength = new FileInfo(posterPath).Length;
- Assert.IsTrue(posterLength > 0, "Poster size is zero for the tested show (" + posterPath + ")");
- }
- }
-}
diff --git a/Unit Tests/Unit Tests.csproj b/Unit Tests/Unit Tests.csproj
deleted file mode 100644
index 779d6470..00000000
--- a/Unit Tests/Unit Tests.csproj
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
- netcoreapp3.1
- UnitTests
-
- false
-
- UnitTests
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PreserveNewest
-
-
-
-
diff --git a/Unit Tests/appsettings.json b/Unit Tests/appsettings.json
deleted file mode 100644
index 6fb127c3..00000000
--- a/Unit Tests/appsettings.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "server.urls": "http://0.0.0.0:5000",
- "https_port": 44300,
- "Logging": {
- "LogLevel": {
- "Default": "Warning"
- }
- },
- "AllowedHosts": "*",
-
- "databasePath": "C://Projects/database.db",
- "tempPath": "C:\\\\Projects\\temp",
- "peoplePath": "D:\\\\Videos\\People",
- "plugins": "C:\\Projects\\Kyoo\\Debug",
- "providerPlugins": "C://Projects/Plugins/Providers",
- "regex": "^(\\\\(?.+?))?\\\\.*\\\\(?.+?) S(?\\d+)E(?\\d+)",
- "absoluteRegex": ".*\\\\(?.+?) (?\\d+)"
-}