Skip to content

Commit 852605e

Browse files
authored
Add missing dependencies in the notice file (#87)
[#86] Third-party Content is missing from the NOTICE file * Update dependencies in the notice file * Exclude unnecessary test utils from the build * Add unit tag to the git workflow Signed-off-by: Kristiyan Gostev <[email protected]>
1 parent 4b8ee90 commit 852605e

13 files changed

Lines changed: 28 additions & 7 deletions

.github/workflows/validation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
go vet ./...
4242
- name: Test
4343
run: |
44-
go test ./... -coverprofile coverage.out -covermode count
44+
go test ./... -coverprofile coverage.out -covermode count -tags=unit
4545
go tool cover -func coverage.out
4646
- name: Build Integration Tests
4747
run: |

NOTICE.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -160,18 +160,18 @@ golang.org/x/sync (v0.0.0-20210220032951-036812b2e83c)
160160
* Project: https://pkg.go.dev/golang.org/x/sync
161161
* Source: https://github.com/golang/sync/tree/036812b2e83c0ddf193dd5a34e034151da389d09
162162

163+
golang.org/x/text (v0.7.0)
164+
165+
* License: BSD 3-Clause "New" or "Revised" License
166+
* Project: https://pkg.go.dev/golang.org/x/text
167+
* Source: https://github.com/golang/text/tree/v0.7.0
168+
163169
azure-sdk-for-go/sdk/azcore (0.20.0)
164170

165171
* License: MIT License
166172
* Project: https://github.com/Azure/azure-sdk-for-go/tree/main/sdk/azcore
167173
* Source: https://github.com/Azure/azure-sdk-for-go/tree/sdk/azcore/v0.20.0/sdk/azcore
168174

169-
azure-sdk-for-go/sdk/azidentity (0.12.0)
170-
171-
* License: MIT License
172-
* Project: https://github.com/Azure/azure-sdk-for-go/tree/main/sdk/azidentity
173-
* Source: https://github.com/Azure/azure-sdk-for-go/tree/sdk/azidentity/v0.12.0/sdk/azidentity
174-
175175
azure-sdk-for-go/sdk/internal (0.8.1)
176176

177177
* License: MIT License

client/fileupload_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
//
1111
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
1212

13+
//go:build unit
14+
1315
package client
1416

1517
import (

client/uploads_azure_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
//
1111
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
1212

13+
//go:build unit
14+
1315
package client
1416

1517
import (

client/uploads_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
//
1111
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
1212

13+
//go:build unit
14+
1315
package client
1416

1517
import (

integration/aws_upload.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
//
1111
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
1212

13+
//go:build integration
14+
1315
package integration
1416

1517
import (

integration/azure_upload.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
//
1111
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
1212

13+
//go:build integration
14+
1315
package integration
1416

1517
import (

integration/upload_test_util.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
//
1111
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
1212

13+
//go:build integration
14+
1315
package integration
1416

1517
import (

uploaders/aws_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
//
1111
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
1212

13+
//go:build unit
14+
1315
package uploaders
1416

1517
import (

uploaders/aws_test_util.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
1010
//
1111
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
12+
//go:build unit || integration
1213

1314
package uploaders
1415

0 commit comments

Comments
 (0)