Browse Source

Disabled LLava tests, they're too slow and are crashing CI (#625)

tags/0.11.0
Martin Evans GitHub 1 year ago
parent
commit
a2d3a847dd
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      LLama.Unittest/LLavaWeightsTests.cs

+ 4
- 4
LLama.Unittest/LLavaWeightsTests.cs View File

@@ -34,14 +34,14 @@ namespace LLama.Unittest

[Fact]
[Fact(Skip = "Very slow in CI")]
public void EmbedImageAsFileName()
{
int n_past = 0;
Assert.True( _lLavaWeights.EmbedImage( _context, Constants.LLavaImage, ref n_past ) );
}
[Fact]
}
[Fact(Skip = "Very slow in CI")]
public void EmbedImageAsBinary()
{
int n_past = 0;


Loading…
Cancel
Save