File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -65,9 +65,8 @@ public static MySqlConnectionStringBuilder CreateConnectionStringBuilder()
65
65
return new MySqlConnectionStringBuilder ( ConnectionString ) ;
66
66
}
67
67
68
- // tests can run extremely slowly on Appveyor (and slightly slower under Travis)
69
- public static int TimeoutDelayFactor { get ; } = Environment . GetEnvironmentVariable ( "APPVEYOR" ) == "True" ? 6 :
70
- Environment . GetEnvironmentVariable ( "TRAVIS" ) == "true" ? 3 : 1 ;
68
+ // tests can run much slower in CI environments
69
+ public static int TimeoutDelayFactor { get ; } = ( Environment . GetEnvironmentVariable ( "APPVEYOR" ) == "True" || Environment . GetEnvironmentVariable ( "TRAVIS" ) == "true" ) ? 6 : 1 ;
71
70
72
71
private static string GetCodeRootPath ( )
73
72
{
You can’t perform that action at this time.
0 commit comments