Skip to content

Commit

Permalink
Fix bazel test
Browse files Browse the repository at this point in the history
  • Loading branch information
dougthor42 committed Feb 20, 2024
1 parent 990bc2e commit 0b62319
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/bitwarden_to_keepass/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ py_library(
name = "__init__",
srcs = ["__init__.py"],
deps = [],
imports = [".."],
)

py_library(
Expand Down
3 changes: 1 addition & 2 deletions tests/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,9 @@ py_library(
pytest_test(
name = "test_main",
srcs = ["test_main.py"],
# imports = ["src/bitwarden_to_keepass"],
deps = [
# To reference something defined in another BUILD file, prefex with
# "//"
# "//". Note that the path is relative to the top-level WORKSPACE.
"//src/bitwarden_to_keepass:main",
# Reference to current BUILD file
":__init__",
Expand Down

0 comments on commit 0b62319

Please sign in to comment.