We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3447928 commit 1bc63f8Copy full SHA for 1bc63f8
testkit-backend/testkit.sh
@@ -31,5 +31,11 @@ python3 -m venv venv
31
source venv/bin/activate
32
pip install -r requirements.txt
33
34
+echo "Starting tests..."
35
# exec python3 main.py --tests UNIT_TESTS
-exec python3 -m unittest tests.neo4j.test_bookmarks.TestBookmarks
36
+(exec python3 -m unittest tests.neo4j.test_authentication.TestAuthenticationBasic) || true
37
+echo "TestAuthenticationBasic Done"
38
+(exec python3 -m unittest tests.neo4j.test_bookmarks.TestBookmarks) || true
39
+echo "TestBookmarks Done"
40
+(exec python3 -m unittest tests.neo4j.test_session_run.TestSessionRun.test_iteration_nested) || true
41
+echo "TestSessionRun Done"
0 commit comments