@@ -41,14 +41,20 @@ def main():
4141 build_cxx20_dir .glob (f'**/test_line_sender{ exe_suffix } ' )))
4242
4343 system_test_path = pathlib .Path ('system_test' ) / 'test.py'
44- qdb_v = '8.1.0' # The version of QuestDB we'll test against.
45-
46- run_cmd ('cargo' , 'test' , '--' , '--nocapture' , cwd = 'questdb-rs' )
47- run_cmd ('cargo' , 'test' , '--all-features' , '--' , '--nocapture' , cwd = 'questdb-rs' )
44+ qdb_v = '8.2.3' # The version of QuestDB we'll test against.
45+
46+ run_cmd ('cargo' , 'test' ,
47+ '--' , '--nocapture' , cwd = 'questdb-rs' )
48+ run_cmd ('cargo' , 'test' , '--no-default-features' , '--features=aws-lc-crypto,tls-native-certs' ,
49+ '--' , '--nocapture' , cwd = 'questdb-rs' )
50+ run_cmd ('cargo' , 'test' , '--no-default-features' , '--features=ring-crypto,tls-native-certs,ilp-over-http' ,
51+ '--' , '--nocapture' , cwd = 'questdb-rs' )
52+ run_cmd ('cargo' , 'test' , '--features=almost-all-features' ,
53+ '--' , '--nocapture' , cwd = 'questdb-rs' )
4854 run_cmd (str (test_line_sender_path ))
4955 run_cmd (str (test_line_sender_path_CXX20 ))
5056 run_cmd ('python3' , str (system_test_path ), 'run' , '--versions' , qdb_v , '-v' )
5157
5258
5359if __name__ == '__main__' :
54- main ()
60+ main ()
0 commit comments