Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1.9k
Split out non concurrent test collections.#6937
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
2a7232b28f0a23c1a517964a5a7ea8dfb40File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
| <PropertyGroup> | ||
| <AssemblyName>Microsoft.ML.TensorFlow.Tests</AssemblyName> | ||
| <StrongNameKeyId>Test</StrongNameKeyId> | ||
| </PropertyGroup> | ||
| <!-- Import the test signing certificate --> | ||
| <Import Project="../Cert.props" /> | ||
| <ItemGroup> | ||
| <ProjectReference Include="..\..\src\Microsoft.ML.TensorFlow\Microsoft.ML.TensorFlow.csproj" /> | ||
| <ProjectReference Include="..\Microsoft.ML.TestFramework\Microsoft.ML.TestFramework.csproj" /> | ||
| <ProjectReference Include="..\Microsoft.ML.Tests\Microsoft.ML.Tests.csproj" /> | ||
| <ProjectReference Include="..\..\src\Microsoft.ML.LightGbm\Microsoft.ML.LightGbm.csproj" /> | ||
| <ProjectReference Include="..\..\src\Microsoft.ML.Vision\Microsoft.ML.Vision.csproj" /> | ||
| <ProjectReference Include="..\..\src\Microsoft.ML.ImageAnalytics\Microsoft.ML.ImageAnalytics.csproj" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <PackageReference Include="Microsoft.ML.TensorFlow.TestModels" Version="$(MicrosoftMLTensorFlowTestModelsVersion)" /> | ||
| <PackageReference Include="SciSharp.TensorFlow.Redist" Version="$(TensorFlowVersion)" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <NativeAssemblyReference Include="MklProxyNative" /> | ||
| <NativeAssemblyReference Include="MklImports" /> | ||
| <NativeAssemblyReference Condition="'$(OS)' == 'Windows_NT'" Include="libiomp5md" /> | ||
| </ItemGroup> | ||
| </Project> | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -233,6 +233,14 @@ public void TestLoadDatetimeColumnWithNullValue() | ||
| connection.Open(); | ||
| using (var command = new SQLiteCommand(connection)) | ||
| { | ||
| // Make sure the table doesn't exist. | ||
| command.CommandText = """ | ||
| BEGIN; | ||
| DROP TABLE IF EXISTS Datetime; | ||
| COMMIT; | ||
| """; | ||
| command.ExecuteNonQuery(); | ||
michaelgsharp marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| command.CommandText = """ | ||
| BEGIN; | ||
| CREATE TABLE IF NOT EXISTS Datetime (datetime Datetime NULL); | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
| <PropertyGroup> | ||
| <AssemblyName>Microsoft.ML.TorchSharp.Tests</AssemblyName> | ||
| <StrongNameKeyId>Test</StrongNameKeyId> | ||
| </PropertyGroup> | ||
| <!-- Import the test signing certificate --> | ||
| <Import Project="../Cert.props" /> | ||
| <ItemGroup> | ||
| <ProjectReference Include="..\..\src\Microsoft.ML.TorchSharp\Microsoft.ML.TorchSharp.csproj" Condition="'$(TargetArchitecture)' == 'x64'" /> | ||
| <ProjectReference Include="..\Microsoft.ML.TestFramework\Microsoft.ML.TestFramework.csproj" /> | ||
| <ProjectReference Include="..\..\src\Microsoft.Data.Analysis\Microsoft.Data.Analysis.csproj" /> | ||
| </ItemGroup> | ||
| <ItemGroup Condition="'$(TargetArchitecture)' != 'x64'"> | ||
| ||
| <Compile Remove="TextClassificationTests.cs" /> | ||
| <Compile Remove="ObjectDetectionTests.cs" /> | ||
| <Compile Remove="NerTests.cs" /> | ||
| <Compile Remove="QATests.cs" /> | ||
| </ItemGroup> | ||
| <ItemGroup Condition="'$(TargetArchitecture)' == 'x64'"> | ||
| <PackageReference Include="libtorch-cpu-win-x64" Version="$(LibTorchVersion)" Condition="$([MSBuild]::IsOSPlatform('Windows')) AND '$(TargetArchitecture)' == 'x64'" /> | ||
| <!-- <PackageReference Include="TorchSharp-cuda-windows" Version="0.99.5" Condition="$([MSBuild]::IsOSPlatform('Windows'))" /> --> | ||
| <PackageReference Include="libtorch-cpu-linux-x64" Version="$(LibTorchVersion)" Condition="$([MSBuild]::IsOSPlatform('Linux')) AND '$(TargetArchitecture)' == 'x64'" /> | ||
| <PackageReference Include="libtorch-cpu-osx-x64" Version="$(LibTorchVersion)" Condition="$([MSBuild]::IsOSPlatform('OSX')) AND '$(TargetArchitecture)' == 'x64'" /> | ||
| <PackageReference Include="MathNet.Numerics.Signed" Version="5.0.0" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <NativeAssemblyReference Include="MklProxyNative" /> | ||
| <NativeAssemblyReference Include="MklImports" /> | ||
| <NativeAssemblyReference Condition="'$(OS)' == 'Windows_NT'" Include="libiomp5md" /> | ||
| </ItemGroup> | ||
| </Project> | ||
Uh oh!
There was an error while loading. Please reload this page.