Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -26,7 +26,7 @@ workflows:
jobs:
lint:
executor: python-container
resource_class: small
resource_class: arangodb/small-amd64
steps:
- checkout
- run:
Expand Down
5 changes: 4 additions & 1 deletion tests/test_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading