Skip to content

Commit

Permalink
Merge pull request #18 from F5Networks/devel_210823
Browse files Browse the repository at this point in the history
adding fix for pipeline
  • Loading branch information
RavinderReddyF5 authored Aug 21, 2023
2 parents baf7c37 + 63c893b commit 17e7c8f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ jobs:
git diff --compact-summary --exit-code || \
(echo; echo "Unexpected difference in directories after code generation. Run 'go generate ./...' command and commit."; exit 1)
# Run acceptance tests in a matrix with Terraform CLI versions
# Run unit tests in a matrix with Terraform CLI versions
test:
name: Terraform Provider Acceptance Tests
name: Terraform Provider Unit Tests
needs: build
runs-on: ubuntu-latest
timeout-minutes: 30
Expand All @@ -71,7 +71,7 @@ jobs:
with:
terraform_version: ${{ matrix.terraform }}
terraform_wrapper: false
- env:
# TF_ACC: "1"
run: go test -v -cover ./internal/provider/
timeout-minutes: 20
# - env:
# TF_ACC: "1"
- run: go test -v -cover ./internal/provider/
timeout-minutes: 20
10 changes: 10 additions & 0 deletions examples/resources/f5os_interface/resource.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
resource "f5os_interface" "test_interface" {
enabled = true
name = "1.0"
native_vlan = 5
trunk_vlans = [
1,
2,
3
]
}

0 comments on commit 17e7c8f

Please sign in to comment.