diff --git a/docs/BUILD b/docs/BUILD index f2343a9fe9..e58e800d0b 100644 --- a/docs/BUILD +++ b/docs/BUILD @@ -60,7 +60,7 @@ plugins = { "python": "v2.0.2", "java": "v0.4.5", "go": "v1.32.0", - "cc": "v0.7.2", + "cc": "v0.7.3", "shell": "v0.2.1", "go-proto": "v0.3.0", "python-proto": "v0.1.0", diff --git a/plugins/BUILD b/plugins/BUILD index 4e91ef6de2..3d8c22f52d 100644 --- a/plugins/BUILD +++ b/plugins/BUILD @@ -7,7 +7,7 @@ plugin_repo( plugin_repo( name = "cc", plugin = "cc-rules", - revision = "v0.7.1", + revision = "v0.7.3", ) plugin_repo( @@ -19,5 +19,5 @@ plugin_repo( plugin_repo( name = "python", plugin = "python-rules", - revision = "v1.14.0", + revision = "v2.0.2", ) diff --git a/src/plzinit/plugins.go b/src/plzinit/plugins.go index 414075818e..7530fb37f1 100644 --- a/src/plzinit/plugins.go +++ b/src/plzinit/plugins.go @@ -55,7 +55,6 @@ var pluginVersion16Map = map[string]v16Mapping{ "defaultpiprepo": "DefaultPipRepo", "wheelrepo": "WheelRepo", "wheelnamescheme": "WheelNameScheme", - "interpreteroptions": "InterpreterOptions", "disablevendorflags": "DisableVendorFlags", "usepypi": "UsePypi", "testrunnerbootstrap": "TestrunnerDeps", diff --git a/test.sh b/test.sh index e2b6de1457..feed5274ee 100755 --- a/test.sh +++ b/test.sh @@ -15,8 +15,8 @@ check_path_for_excludes() { EXCLUDES="" if ! hash python3 2>/dev/null ; then - warn "python3 not found, excluding python3 tests" - EXCLUDES="${EXCLUDES} --exclude=py3 --exclude python3" + warn "python3 not found, excluding python tests" + EXCLUDES="${EXCLUDES} --exclude=py" fi if ! hash xz 2>/dev/null ; then warn "xz not found, excluding update tests" diff --git a/test/BUILD b/test/BUILD index 55c77bda7c..1c64b97e1e 100644 --- a/test/BUILD +++ b/test/BUILD @@ -118,7 +118,7 @@ plz_e2e_test( name = "no_coverage_output_test", cmd = "plz test //test:_no_coverage_output_test", expect_file_doesnt_exist = "../../../bin/test/.test_coverage__no_coverage_output_test*", - labels = ["python3"], + labels = ["py"], ) # Test that we do generate it when using plz cover. @@ -179,9 +179,9 @@ python_test( plz_e2e_test( name = "individual_python_test", - cmd = "plz test //test:individual_test_run_py TestRunningIndividualTests.test_first_thing", + cmd = "plz test --rerun //test:individual_test_run_py TestRunningIndividualTests.test_first_thing", expect_output_contains = "1 test target and 1 test run", - labels = ["python3"], + labels = ["py"], ) # Test re-runs.