Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

'result_clixml_path' is an input option in action.ps1 but not specified as an input in action.yml #18

Open
aldrichtr opened this issue Apr 7, 2022 · 0 comments

Comments

@aldrichtr
Copy link

in action.ps1 the test_results_path is available as an input option. If it is provided, then it looks for result_clixml_path :

$test_results_path = $inputs.test_results_path
if ($test_results_path) {
    Write-ActionInfo "Test Results Path provided as input; skipping Pester tests"

    $result_clixml_path = Get-ActionInput result_clixml_path
    if ($result_clixml_path) {
        $script:pesterResult = Import-Clixml $result_clixml_path
        Write-ActionInfo "Pester Result CLIXML provided as input; loaded"
    }
}

However, in action.yml, result_clixml_path is not listed in inputs:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant