File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -79,8 +79,8 @@ private static ConnectionSettings DefaultSettings(ConnectionSettings settings) =
7979 private static IClrTypeMapping < Project > ProjectMapping ( ClrTypeMappingDescriptor < Project > m )
8080 {
8181 m . IndexName ( "project" ) . IdProperty ( p => p . Name ) ;
82- //*_range type only available since 5.2.0
83- if ( VersionUnderTestSatisfiedBy ( "<5.2.0" ) )
82+ //*_range type only available since 5.2.0 so we ignore them when running integration tests
83+ if ( VersionUnderTestSatisfiedBy ( "<5.2.0" ) && Configuration . RunIntegrationTests )
8484 m . Ignore ( p => p . Ranges ) ;
8585 return m ;
8686 }
Original file line number Diff line number Diff line change 11# mode either u (unit test), i (integration test) or m (mixed mode)
2- mode : i
2+ mode : u
33# the elasticsearch version that should be started
44# Can be a snapshot version of sonatype or "latest" to get the latest snapshot of sonatype
55elasticsearch_version : 5.0.2
You can’t perform that action at this time.
0 commit comments