Skip to content

Commit

Permalink
test: Disable tests using deprecated AI models (#2861)
Browse files Browse the repository at this point in the history
  • Loading branch information
chynesNR authored Oct 30, 2024
1 parent 7f07c4d commit c32d87e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ public abstract class BedrockTestsBase<TFixture> : NewRelicIntegrationTest<TFixt
private string _prompt = "In one sentence, what is a large-language model?";
private List<string> _bedrockModelsToTest = new List<string>
{
"meta13",
"amazonembed",
"amazonexpress",
"cohere",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public LlmAccountDisabledTestsBase(TFixture fixture, ITestOutputHelper output) :
_fixture.Initialize();
}

[Fact]
//[Fact] // The model we were using that was marked as disabled is deprecated, so the test no longer works
public void BedrockDisabledTest()
{
// Make sure it actually got called
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public LlmApiTestsBase(TFixture fixture, ITestOutputHelper output) : base(fixtur
_fixture.Initialize();
}

[Fact]
//[Fact] The Meta Llama models have been deprecated, so these tests need to be reworked
public void BedrockApiTest()
{
bool found = false;
Expand Down

0 comments on commit c32d87e

Please sign in to comment.