From a531f4480e33dc720568da6ac38487e8b62333c6 Mon Sep 17 00:00:00 2001 From: Labrys of Knossos Date: Sun, 31 Mar 2019 12:13:11 -0400 Subject: [PATCH 1/4] Add source install cleanup test --- azure-pipelines.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a609703b0..485f214fe 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -40,6 +40,13 @@ jobs: pytest tests --doctest-modules --junitxml=junit/test-results.xml displayName: 'pytest' + - script: + rm -rf .git + python cleanup.py + python TorrentToMedia.py + python nzbToMedia.py + displayName: 'Test source install cleanup' + - task: PublishTestResults@2 inputs: testResultsFiles: '**/test-results.xml' From 02813a6eaf865157433dadfccaf9ee651c64e6d7 Mon Sep 17 00:00:00 2001 From: Labrys of Knossos Date: Sun, 31 Mar 2019 12:39:12 -0400 Subject: [PATCH 2/4] Add source install cleanup test --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 485f214fe..96321a5bb 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -40,7 +40,7 @@ jobs: pytest tests --doctest-modules --junitxml=junit/test-results.xml displayName: 'pytest' - - script: + - script: | rm -rf .git python cleanup.py python TorrentToMedia.py From 16b7c1149511528972751d1b986558ead0b188be Mon Sep 17 00:00:00 2001 From: Labrys of Knossos Date: Sun, 31 Mar 2019 12:45:07 -0400 Subject: [PATCH 3/4] Force cleanup errors for confirming CI test --- cleanup.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cleanup.py b/cleanup.py index d313f2b4f..43dc5775d 100644 --- a/cleanup.py +++ b/cleanup.py @@ -15,10 +15,6 @@ 'win', ], 'core': [ - 'auto_process', - 'extractor', - 'plugins', - 'utils', ], } From f5fdc145774b936b592d33ad523a43ec2a8eb204 Mon Sep 17 00:00:00 2001 From: Labrys of Knossos Date: Sun, 31 Mar 2019 12:49:32 -0400 Subject: [PATCH 4/4] Revert "Force cleanup errors for confirming CI test" This reverts commit 16b7c1149511528972751d1b986558ead0b188be. --- cleanup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cleanup.py b/cleanup.py index 43dc5775d..d313f2b4f 100644 --- a/cleanup.py +++ b/cleanup.py @@ -15,6 +15,10 @@ 'win', ], 'core': [ + 'auto_process', + 'extractor', + 'plugins', + 'utils', ], }