Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .plzconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ Version = >=17.12.2
[Build]
hashcheckers = sha256

[Parse]
PreloadBuildDefs = test/build_defs/test.build_defs

[Plugin "go"]
Target = //plugins:go
ImportPath = github.com/please-build/python-rules
Expand All @@ -19,6 +16,9 @@ DisableVendorFlags = true
[Plugin "shell"]
Target = //plugins:shell

[Plugin "e2e"]
Target = //plugins:e2e

[PluginDefinition]
name = python

Expand Down
6 changes: 6 additions & 0 deletions plugins/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,9 @@ plugin_repo(
name = "shell",
revision = "v0.1.2",
)

plugin_repo(
name = "e2e",
plugin = "plugin-integration-testing",
revision = "v1.0.3",
)
6 changes: 5 additions & 1 deletion test/BUILD
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
subinclude("//build_defs:python", "///shell//build_defs:shell")
subinclude(
"///e2e//build_defs:e2e",
"///shell//build_defs:shell",
"//build_defs:python",
)

package(
default_visibility = ["PUBLIC"],
Expand Down
59 changes: 0 additions & 59 deletions test/build_defs/test.build_defs

This file was deleted.