From 96a5f4271ff0eae1aee4817ad8227de0cba29474 Mon Sep 17 00:00:00 2001 From: Matteo Cominetti Date: Wed, 8 Jul 2020 15:17:06 +0100 Subject: [PATCH] fix(config): made config optional --- .gitignore | 1 + xUnitRevit/config.json | 6 ------ xUnitRevit/config_sample.json | 6 ++++++ 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 xUnitRevit/config.json create mode 100644 xUnitRevit/config_sample.json diff --git a/.gitignore b/.gitignore index dfcfd56..8d39710 100644 --- a/.gitignore +++ b/.gitignore @@ -348,3 +348,4 @@ MigrationBackup/ # Ionide (cross platform F# VS Code tools) working folder .ionide/ +xUnitRevit/config.json diff --git a/xUnitRevit/config.json b/xUnitRevit/config.json deleted file mode 100644 index c3afb53..0000000 --- a/xUnitRevit/config.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "startupAssemblies": [ - "C:\\Code\\Speckle-Next\\SpeckleKitRevit\\SpeckleRevitTests\\bin\\Debug\\SpeckleRevitTests.dll" - ], - "autoStart": true -} \ No newline at end of file diff --git a/xUnitRevit/config_sample.json b/xUnitRevit/config_sample.json new file mode 100644 index 0000000..25198e9 --- /dev/null +++ b/xUnitRevit/config_sample.json @@ -0,0 +1,6 @@ +{ + "startupAssemblies": [ + "C:\\Code\\Speckle-Next\\ConverterRevit\\SpeckleRevitTests\\bin\\Debug\\SpeckleRevitTests.dll" + ], + "autoStart": true +} \ No newline at end of file