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 f6c905a commit 44a8ab4Copy full SHA for 44a8ab4
testkit-backend/testkit.sh
@@ -10,8 +10,6 @@ export TEST_DRIVER_NAME=php
10
TEST_DRIVER_REPO=$(realpath ..)
11
export TEST_DRIVER_REPO
12
13
-echo "TEST_DRIVER_REPO: $TEST_DRIVER_REPO"
14
-
15
if [ "$1" == "--clean" ]; then
16
if [ -d testkit ]; then
17
rm -rf testkit
@@ -28,4 +26,9 @@ else
28
26
fi
29
27
30
cd testkit || (echo 'cannot cd into testkit' && exit 1)
31
-exec python3 main.py --tests UNIT_TESTS
+python3 -m venv venv
+source venv/bin/activate
+pip install -r requirements.txt
32
+
33
+# exec python3 main.py --tests UNIT_TESTS
34
+exec python3 -m unittest tests.neo4j.test_authentication.TestAuthenticationBasic.test_success_on_basic_token
0 commit comments