Skip to content

Commit

Permalink
Skip azure devops project test for real
Browse files Browse the repository at this point in the history
  • Loading branch information
csquire committed Dec 11, 2024
1 parent d2dc5c2 commit 532b070
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ import (
)

func TestAccDbtCloudAzureDevOpsProject(t *testing.T) {
if acctest_helper.IsDbtCloudPR() {
t.Skip("Skipping Azure DevOps Project datasource test in CI until a Personal Access Token is available")
if os.Getenv("CI") != "" {
t.Skip("Skipping Azure DevOps Project datasource test in CI " +
"until Azure integration and a personal access token are available")
}

//TODO: Parameterize these values when a standard method is available for parameterization
Expand Down

0 comments on commit 532b070

Please sign in to comment.