You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add Local Stack for External Storage UnitTesting (#1095)
* Add Local Stack
* Fix error
* #Fix: MSBUILD : error MSB1009: Project file does not exist.
* Run storage tests by creating a temporary solution containing only .NET 8 projects.
* fix syntax error
* Fix directory separator character
* Fix casing issue.
* Exclude extensions tests from temporary solution
* Ensure compatibility with both Windows and Linux by normalizing path separators in the DumpProjectsAndCoreTests MSBuild task.
* Install libgdiplus
Fix System.TypeInitializationException : The type initializer for 'Gdip' threw an exception.
System.DllNotFoundException : Unable to load shared library 'libgdiplus' or one of its dependencies. In order to help diagnose loading problems, consider using a tool like strace. If you're using glibc,
* Skip ShellTest on non-Windows platforms
* Remove hardcoded '.exe' from the dotnet executable to ensure compatibility across Windows and Linux environments
* Prevent Windows-specific unit tests from running on Ubuntu by disabling them.
* Prevent Windows-specific unit tests from running on Ubuntu by disabling them.
Add missing file
* Enable custom endpoint
* Add S3_SKIP_URL_SIGNATURE_TEST environment variable to skip URL signature tests in External Storage Tests
* [FIX] PDFTests in docker container
* Fix syntax error.
---------
Co-authored-by: Claudia Murialdo <cmurialdo@genexus.com>
Co-authored-by: Gonzalo Gallotti Vazquez <g.gallotti@globant.com>
<TargetName="DumpProjects"Condition="($(TargetFramework.StartsWith($(DumpSolutionTargetFrameworkDefault))) OR $(TargetFrameworks.Contains($(DumpSolutionTargetFrameworkDefault))) ) AND !$(MSBuildProjectFullPath.Contains('\test\')) AND ('$(IsPublishable)'=='true' OR '$(IsPublishable)'=='')">
26
+
<TargetName="DumpProjects"Condition="($(TargetFramework.StartsWith($(DumpSolutionTargetFrameworkDefault))) OR $(TargetFrameworks.Contains($(DumpSolutionTargetFrameworkDefault))) ) AND !$(MSBuildProjectFullPath.Replace('\', '/').Contains('/test/')) AND ('$(IsPublishable)'=='true' OR '$(IsPublishable)'=='')">
<TargetName="DumpProjectsAndCoreTests"Condition="($(TargetFramework.StartsWith($(DumpSolutionTargetFrameworkDefault))) OR $(TargetFrameworks.Contains($(DumpSolutionTargetFrameworkDefault))) ) AND !$(MSBuildProjectFullPath.Replace('\', '/').Contains('/extensions/'))">
0 commit comments