From e8055577817145e58698ed6fa9247a2eb214b9e1 Mon Sep 17 00:00:00 2001 From: Alex Petenchea Date: Fri, 8 May 2026 15:18:12 +0800 Subject: [PATCH 1/2] 4.0: path property is no longer available in 4.0 --- tests/test_database.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test_database.py b/tests/test_database.py index 8d44338d..8cd6df00 100644 --- a/tests/test_database.py +++ b/tests/test_database.py @@ -73,7 +73,10 @@ def test_database_misc_methods(client, sys_db, db, bad_db, cluster, secret, db_v # Test get properties properties = db.properties() assert "id" in properties - assert "path" in properties + + if db_version < version.parse("4.0"): + assert "path" in properties + assert properties["name"] == db.name assert properties["system"] is False From 8613488c02541e144f341f4acbead2765bf8939f Mon Sep 17 00:00:00 2001 From: Alex Petenchea Date: Fri, 8 May 2026 15:47:11 +0800 Subject: [PATCH 2/2] update circleci resource_class --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ccb9cf98..112a3f73 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,7 +4,7 @@ executors: python-container: docker: - image: cimg/python:3.12 - resource_class: small + resource_class: arangodb/small-amd64 python-vm: machine: image: ubuntu-2404:current @@ -26,7 +26,7 @@ workflows: jobs: lint: executor: python-container - resource_class: small + resource_class: arangodb/small-amd64 steps: - checkout - run: