File tree Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -35,14 +35,16 @@ pip install -r requirements.txt
3535# python3 main.py --tests UNIT_TESTS
3636
3737echo " Starting tests..."
38-
39- python3 -m unittest tests.neo4j.test_authentication.TestAuthenticationBasic
40- python3 -m unittest tests.neo4j.test_bookmarks.TestBookmarks
41- python3 -m unittest tests.neo4j.test_session_run.TestSessionRun
42- python3 -m unittest tests.neo4j.test_direct_driver.TestDirectDriver
43- python3 -m unittest tests.neo4j.test_summary.TestSummary
44- python3 -m unittest tests.neo4j.test_tx_func_run.TestTxFuncRun
45- python3 -m unittest tests.neo4j.test_tx_run.TestTxRun
46-
38+ # test_tx_func_run
39+
40+ python3 -m unittest tests.neo4j.test_tx_func_run.TestTxFuncRun.test_simple_query
41+ python3 -m unittest tests.neo4j.test_tx_func_run.TestTxFuncRun.test_parameter
42+ python3 -m unittest tests.neo4j.test_tx_func_run.TestTxFuncRun.test_meta_data
43+ python3 -m unittest tests.neo4j.test_tx_func_run.TestTxFuncRun.test_iteration_nested
44+ python3 -m unittest tests.neo4j.test_tx_func_run.TestTxFuncRun.test_updates_last_bookmark_on_commit
45+ python3 -m unittest tests.neo4j.test_tx_func_run.TestTxFuncRun.test_does_not_update_last_bookmark_on_rollback
46+ python3 -m unittest tests.neo4j.test_tx_func_run.TestTxFuncRun.test_client_exception_rolls_back_change
47+ python3 -m unittest tests.neo4j.test_tx_func_run.TestTxFuncRun.test_tx_func_configuration
48+ python3 -m unittest tests.neo4j.test_tx_func_run.TestTxFuncRun.test_tx_timeout
4749
4850exit $EXIT_CODE
You can’t perform that action at this time.
0 commit comments