blob: a3a03cb79a21881c55db8e0e859f51bb6c0bc1d7 [file] [log] [blame]
Chris Frantz3f87fe02021-11-12 09:59:04 -08001# Copyright lowRISC contributors.
2# Licensed under the Apache License, Version 2.0, see LICENSE for details.
3# SPDX-License-Identifier: Apache-2.0
4
Dan McArdle83c6bd62022-07-14 18:25:00 -04005load("@rules_python//python:defs.bzl", "py_test")
Dan McArdlef605c4f2022-07-14 15:21:22 -04006
Chris Frantz3f87fe02021-11-12 09:59:04 -08007package(default_visibility = ["//visibility:public"])
8
9exports_files(glob(["**"]))
Dan McArdlef605c4f2022-07-14 15:21:22 -040010
11py_test(
12 name = "bitstreams_workspace_test",
13 srcs = [
14 "bitstreams_workspace.py",
15 "bitstreams_workspace_test.py",
16 ],
17)