diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 14584b77..72f35493 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -4,6 +4,7 @@ on: pull_request: branches: - master + workflow_dispatch: #add this option in case we change credentials/account settings and want to re-run tests jobs: tests: diff --git a/src/Sovren.SDK.Tests/IntegrationTests/AIMatchingTests.cs b/src/Sovren.SDK.Tests/IntegrationTests/AIMatchingTests.cs index e04d6a68..0c9923bc 100644 --- a/src/Sovren.SDK.Tests/IntegrationTests/AIMatchingTests.cs +++ b/src/Sovren.SDK.Tests/IntegrationTests/AIMatchingTests.cs @@ -17,8 +17,8 @@ namespace Sovren.SDK.Tests.IntegrationTests { public class AIMatchingTests : TestBase { - private const string _jobIndexId = "SDK-job-" + nameof(AIMatchingTests); - private const string _resumeIndexId = "SDK-resume-" + nameof(AIMatchingTests); + private const string _jobIndexId = "dotnet-SDK-job-" + nameof(AIMatchingTests); + private const string _resumeIndexId = "dotnet-SDK-resume-" + nameof(AIMatchingTests); private const string _documentId = "1"; private readonly List _resumesIndexes = new List() { _resumeIndexId }; diff --git a/src/Sovren.SDK.Tests/IntegrationTests/IndexTests.cs b/src/Sovren.SDK.Tests/IntegrationTests/IndexTests.cs index de0a8517..8ddb1d35 100644 --- a/src/Sovren.SDK.Tests/IntegrationTests/IndexTests.cs +++ b/src/Sovren.SDK.Tests/IntegrationTests/IndexTests.cs @@ -19,8 +19,8 @@ namespace Sovren.SDK.Tests.IntegrationTests { public class IndexTests : TestBase { - const string resumeIndexId = "SDK-IntegrationTest-Resume"; - const string jobIndexId = "SDK-IntegrationTest-Job"; + const string resumeIndexId = "dotnet-SDK-IntegrationTest-Resume"; + const string jobIndexId = "dotnet-SDK-IntegrationTest-Job"; private static string GetIndexName(IndexType indexType) {