mirror of
https://github.com/ollama/ollama.git
synced 2026-07-23 09:10:53 -05:00
This refactors the existing integration tests into 3 priumary groups: fast, release, and library. It also refines some of the release tests to drop some of the older models and pick up newer models, while retaining the broad coverage in the library group.
10 lines
241 B
Go
10 lines
241 B
Go
//go:build integration && !fast && !release && !library && !imagegen
|
|
|
|
package integration
|
|
|
|
import "testing"
|
|
|
|
func TestIntegrationRequiresScope(t *testing.T) {
|
|
t.Fatal("integration tests require one of the fast, release, or library tags")
|
|
}
|