Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,9 @@ Method OnBeforeAllTests() As %Status
set settings.namespaceTemp = folder
set settings.percentClassReplace = "_"
$$$ThrowOnError(settings.%Save())
do ##class(%Library.File).CopyDir($Piece(..Manager.CurrentDir,"test"),folder,1)
// copy just the test directory in this repo into the temp repo directory
set srcDir = ##class(%File).NormalizeDirectory("test", $Piece(..Manager.CurrentDir,"test"))
do ##class(%Library.File).CopyDir(srcDir, ##class(%File).NormalizeDirectory("test", folder), 1)
kill @##class(SourceControl.Git.Utils).MappingsNode()
Set app = $System.CSP.GetDefaultApp($Namespace)
If (app '= "") {
Expand Down
Loading