-
Notifications
You must be signed in to change notification settings - Fork 385
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
**What type of PR is this?** > Other **What package or component does this PR mostly affect?** > all **What does this PR do? Why is it needed?** Additional tests for `.bazelignore` **Which issues(s) does this PR fix?** Fixes # **Other notes for review**
- Loading branch information
Showing
8 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
file1 | ||
sub1 | ||
sub2/file1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
filegroup( | ||
name = "all_files", | ||
testonly = True, | ||
srcs = [ | ||
".bazelignore", | ||
"WORKSPACE", | ||
"//sub2:all_files", | ||
], | ||
visibility = ["//visibility:public"], | ||
) |
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
filegroup( | ||
name = "all_files", | ||
testonly = True, | ||
srcs = ["file3"], | ||
visibility = ["//visibility:public"], | ||
) |
Empty file.
Empty file.