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()
6565 return new MySqlConnectionStringBuilder ( ConnectionString ) ;
6666 }
6767
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 ;
7170
7271 private static string GetCodeRootPath ( )
7372 {
You can’t perform that action at this time.
0 commit comments