Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions ci/scripts/csharp_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,8 @@ source_dir=${1}/csharp/test/Apache.Arrow.Adbc.Tests
pushd ${source_dir}
dotnet test
popd

source_dir=${1}/csharp/test/Drivers/Databricks
pushd ${source_dir}
dotnet test --filter "FullyQualifiedName~Apache.Arrow.Adbc.Tests.Drivers.Databricks.Unit"
popd
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
using Xunit;
using Xunit.Abstractions;

namespace Apache.Arrow.Adbc.Tests.Drivers.Databricks
namespace Apache.Arrow.Adbc.Tests.Drivers.Databricks.Unit
{
public class DatabricksOperationStatusPollerTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

using Xunit;

namespace Apache.Arrow.Adbc.Tests.Drivers.Databricks.Result
namespace Apache.Arrow.Adbc.Tests.Drivers.Databricks.Unit.Result
{
public class DescTableExtendedResultTest
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
using Apache.Arrow.Adbc.Drivers.Databricks;
using Xunit;

namespace Apache.Arrow.Adbc.Tests.Drivers.Databricks
namespace Apache.Arrow.Adbc.Tests.Drivers.Databricks.Unit
{
/// <summary>
/// Tests for the RetryHttpHandler class.
Expand Down
Loading