Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
adreed-msft committed Mar 29, 2023
2 parents 45f50be + 108dbdd commit eb734a9
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 30 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/codespell.yml
@@ -1,24 +1,24 @@
# GitHub Action to automate the identification of common misspellings in text files.
# https://github.com/codespell-project/actions-codespell
# https://github.com/codespell-project/codespell
name: codespell
on:
push:
branches:
- dev
- main
pull_request:
branches:
- dev
- main
jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: codespell-project/actions-codespell@master
with:
check_filenames: true
skip: ./sddl/sddlPortable_test.go,./sddl/sddlHelper_linux.go,./go.sum
# GitHub Action to automate the identification of common misspellings in text files.
# https://github.com/codespell-project/actions-codespell
# https://github.com/codespell-project/codespell
name: codespell
on:
push:
branches:
- dev
- main
pull_request:
branches:
- dev
- main
jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: codespell-project/actions-codespell@master
with:
check_filenames: true
skip: ./sddl/sddlPortable_test.go,./sddl/sddlHelper_linux.go,./go.sum
ignore_words_list: "resue,pase,cancl,cacl,froms"
2 changes: 2 additions & 0 deletions cmd/zc_traverser_blob.go
Expand Up @@ -64,6 +64,8 @@ type blobTraverser struct {
includeSnapshot bool

includeVersion bool

stripTopDir bool

Check failure on line 68 in cmd/zc_traverser_blob.go

View workflow job for this annotation

GitHub Actions / lint (1.18, ubuntu-latest)

field `stripTopDir` is unused (unused)
}

func (t *blobTraverser) IsDirectory(isSource bool) (bool, error) {
Expand Down
10 changes: 5 additions & 5 deletions e2etest/declarativeRunner.go
Expand Up @@ -111,16 +111,16 @@ func RunScenarios(
validate Validate, // TODO: do we really want the test author to have to nominate which validation should happen? Pros: better perf of tests. Cons: they have to tell us, and if they tell us wrong test may not test what they think it tests
// _ interface{}, // TODO if we want it??, blockBlobsOnly or specific/all blob types

// It would be a pain to list out every combo by hand,
// In addition to the fact that not every credential type is sensible.
// Thus, the E2E framework takes in a requested set of credential types, and applies them where sensible.
// This allows you to make tests use OAuth only, SAS only, etc.
// It would be a pain to list out every combo by hand,
// In addition to the fact that not every credential type is sensible.
// Thus, the E2E framework takes in a requested set of credential types, and applies them where sensible.
// This allows you to make tests use OAuth only, SAS only, etc.
requestedCredentialTypesSrc []common.CredentialType,
requestedCredentialTypesDst []common.CredentialType,
p params,
hs *hooks,
fs testFiles,
// TODO: do we need something here to explicitly say that we expect success or failure? For now, we are just inferring that from the elements of sourceFiles
// TODO: do we need something here to explicitly say that we expect success or failure? For now, we are just inferring that from the elements of sourceFiles
destAccountType AccountType,
srcAccountType AccountType,
scenarioSuffix string) {
Expand Down
4 changes: 2 additions & 2 deletions e2etest/scenario_os_helpers_for_windows.go
Expand Up @@ -39,7 +39,7 @@ import (
type osScenarioHelper struct{}

// set file attributes to test file
func (osScenarioHelper) setAttributesForLocalFile(filePath string, attrList []string) error {
func (osScenarioHelper) setAttributesForLocalFile(filePath string, attrList []string) error { //nolint:golint,unused
lpFilePath, err := syscall.UTF16PtrFromString(filePath)
if err != nil {
return err
Expand All @@ -65,7 +65,7 @@ func (osScenarioHelper) setAttributesForLocalFile(filePath string, attrList []st
return err
}

func (s osScenarioHelper) setAttributesForLocalFiles(c asserter, dirPath string, fileList []string, attrList []string) {
func (s osScenarioHelper) setAttributesForLocalFiles(c asserter, dirPath string, fileList []string, attrList []string) { //nolint:golint,unused
for _, fileName := range fileList {
err := s.setAttributesForLocalFile(filepath.Join(dirPath, fileName), attrList)
c.AssertNoErr(err)
Expand Down

0 comments on commit eb734a9

Please sign in to comment.