Tests/Integration/CirclePython.config.ps1
#region HEADER # Integration Test Config Template Version: 1.2.1 #endregion $ConfigurationData = @{ AllNodes = @( @{ NodeName = 'localhost' CertificateFile = $env:DscPublicCertificatePath } ) } <# .SYNOPSIS Installs python3 and sets it to the default #> Configuration CirclePython_Integration_Config { Import-DscResource -ModuleName 'CircleCIDSCW' node $AllNodes.NodeName { CirclePython 'Integration_Test' { EnvName = 'python3' Version = '3.9' DefaultVersion = $true } } } |