-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.bazel
45 lines (42 loc) · 1021 Bytes
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
load("@rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "mlflow",
srcs = [
"dbfs_artifact_repo.go",
"file_artifact_repo.go",
"file_experiment.go",
"file_run.go",
"file_store.go",
"interface.go",
"rest_store.go",
],
importpath = "github.com/Astera-org/mlflow-go",
visibility = ["//visibility:public"],
deps = [
"//protos:protos_go_pregen",
"@com_github_google_uuid//:uuid",
"@in_gopkg_yaml_v3//:yaml_v3",
],
)
go_test(
name = "mlflow_test",
timeout = "short",
srcs = [
"file_test.go",
"interface_test.go",
"rest_store_test.go",
],
embed = [":mlflow"],
deps = [
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)
go_test(
name = "artifact_repo_test",
timeout = "short",
srcs = ["artifact_repo_test.go"],
embed = [":mlflow"],
gotags = ["manual"],
tags = ["manual"],
)