@@ -22,47 +22,32 @@ $TestsRunGroups = @{
22
22
)
23
23
# do not run on appveyor
24
24
" appveyor_disabled" = @ (
25
- # takes too long
26
- ' Install-DbaSqlWatch' ,
27
- ' Uninstall-DbaSqlWatch' ,
28
- ' Get-DbaExecutionPlan' ,
29
- # Non-useful info from newly started sql servers
30
- ' Get-DbaCpuRingBuffer' ,
31
- ' Get-DbaLatchStatistic' ,
32
- # fails on newer version of SMO
25
+ # tests that work locally against SQL Server 2022 instances without problems but fail on AppVeyor
26
+ ' ConvertTo-DbaXESession' ,
27
+ ' Export-DbaUser' ,
28
+ ' Get-DbaPermission' ,
33
29
' Get-DbaUserPermission' ,
34
- ' Invoke-DbaBalanceDataFiles' ,
35
- ' Invoke-DbaWhoisActive' , # Works locally aganint a SQL Server 2022 instance without problems.
36
30
' Install-DbaDarlingData' ,
37
- # previous tests that were failing on older versions too
31
+ ' Invoke-DbaWhoisActive ' ,
38
32
' Remove-DbaAvailabilityGroup' ,
39
- ' Read-DbaAuditFile ' ,
33
+ ' Remove-DbaDatabaseSafely ' ,
40
34
' Sync-DbaLoginPermission' ,
41
- ' Read-DbaXEFile' ,
42
- ' Stop-DbaXESession' ,
43
- ' Test-DbaTempDbConfig' ,
44
- # 'New-DbaDbUser',
45
- ' Stop-DbaXESession' ,
35
+ # tests that fail locally against SQL Server 2022 instances and fail on AppVeyor
36
+ ' Set-DbaAgentJobStep' ,
46
37
' New-DbaLogin' ,
47
38
' Watch-DbaDbLogin' ,
48
- ' ConvertTo-DbaXESession' ,
49
- ' Test-DbaInstanceName' ,
50
- ' Test-DbaDeprecatedFeature' ,
51
- ' Remove-DbaDatabaseSafely' ,
52
- ' Get-DbaDbMasterKey' ,
53
- ' Get-DbaPermission' ,
54
- ' Test-DbaManagementObject' ,
39
+ # tests that fail because the command does not work
40
+ ' Copy-DbaDbCertificate' ,
55
41
' Export-DbaDacPackage' ,
56
- ' New-DbaDbTransfer' ,
57
- ' Get-DbaDbSynonym' ,
58
- ' Get-DbaDbVirtualLogFile' ,
59
- ' Get-DbaFile' ,
60
- ' Get-DbaHelpIndex' ,
61
- ' Get-DbaExternalProcess' ,
62
- # just fails too often
63
- ' Test-DbaMaxDop' ,
64
- ' Test-DbaOptimizeForAdHoc' ,
65
- ' New-DbaDbSnapshot'
42
+ ' Read-DbaAuditFile' ,
43
+ ' Read-DbaXEFile' ,
44
+ # takes too long
45
+ ' Install-DbaSqlWatch' ,
46
+ ' Uninstall-DbaSqlWatch' ,
47
+ ' Get-DbaExecutionPlan' ,
48
+ # Non-useful info from newly started sql servers
49
+ ' Get-DbaCpuRingBuffer' ,
50
+ ' Get-DbaLatchStatistic'
66
51
)
67
52
# do not run everywhere
68
53
" disabled" = @ ()
0 commit comments