test: make dotnet evidence tests runner portable
This commit is contained in:
@@ -46,7 +46,8 @@ namespace QuantEngine.Application.Services
|
||||
result.TotalElapsedMilliseconds = totalSw.Elapsed.TotalMilliseconds;
|
||||
|
||||
// Output JSON file for integration validation
|
||||
var tempDir = @"C:\Temp\data_feed\Temp";
|
||||
var tempDir = Environment.GetEnvironmentVariable("QE_TEMP_ROOT")
|
||||
?? Path.Combine(Directory.GetCurrentDirectory(), "Temp");
|
||||
if (!Directory.Exists(tempDir))
|
||||
{
|
||||
Directory.CreateDirectory(tempDir);
|
||||
|
||||
Reference in New Issue
Block a user