Skip to content

Commit a60cd85

Browse files
committed
temp: lock adb
need to investigate issues with 3.12.3
1 parent dad1495 commit a60cd85

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

starter.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ docker run -d \
1313
$extra_ports \
1414
-v "$(pwd)/tests/static/":/tests/static \
1515
-v /tmp:/tmp \
16-
"arangodb/$image_name:latest" \
16+
"arangodb/$image_name:3.12.2" \
1717
/bin/sh -c "arangodb --configuration=/tests/static/$conf_file"

tests/conftest.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,15 @@ def pytest_configure(config: Any) -> None:
4242
print("Username: " + con["username"])
4343
print("Password: " + con["password"])
4444
print("Database: " + con["dbName"])
45-
print("----------------------------------------")
4645

4746
global db
4847
db = ArangoClient(hosts=con["url"]).db(
4948
con["dbName"], con["username"], con["password"], verify=True
5049
)
5150

51+
print("Version: " + db.version())
52+
print("----------------------------------------")
53+
5254
os.environ["DATABASE_HOST"] = con["url"]
5355
os.environ["DATABASE_USERNAME"] = con["username"]
5456
os.environ["DATABASE_PASSWORD"] = con["password"]

0 commit comments

Comments
 (0)