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: 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