From eac5526a281f07dc9eadb813cbf8bad223da6b28 Mon Sep 17 00:00:00 2001 From: Moss Date: Tue, 7 Apr 2020 11:41:03 +0200 Subject: [PATCH] Update prov test code --- .github/CONTRIBUTING.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index a9f7a00d7..b88ea01b4 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -463,10 +463,7 @@ of this code you wrote. Your test should be like: ```go func TestShellProvisioner(t *testing.T) { - p := os.Getenv("ACC_TEST_PROVISIONERS") - if p != "all" && !strings.Contains(p, "shell") { - t.Skip() - } + acc.TestProvisionersPreCheck("shell", t) acc.TestProvisionersAgainstBuilders(new(ShellProvisionerAccTest), t) } ```