Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preparing for release #43

Merged
merged 4 commits into from
Mar 27, 2025
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 @@ -18,10 +18,10 @@ workflows:
name: Python (<< matrix.python_version >>) - ArangoDB (<< matrix.arangodb_license >>, << matrix.arangodb_version >> << matrix.arangodb_config >>)
matrix:
parameters:
python_version: ["3.10"]
python_version: ["3.10", "3.11", "3.12"]
arangodb_config: ["single", "cluster"]
arangodb_license: ["community", "enterprise"]
arangodb_version: ["3.12"]
arangodb_version: ["3.11", "3.12"]

jobs:
lint:
Expand Down
36 changes: 36 additions & 0 deletions .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Upload to PyPI

on:
release:
types: [published]

jobs:
upload:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: actions/setup-python@v4
with:
python-version: "3.12"

- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install build twine

- name: Build package
run: python -m build

- name: Publish to PyPI Test
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TEST_TOKEN }}
run: twine upload --repository testpypi dist/*

- name: Publish to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: twine upload --repository pypi dist/*
14 changes: 14 additions & 0 deletions tests/static/cluster-3.11.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[starter]
mode = cluster
local = true
address = 0.0.0.0
port = 8528

[auth]
jwt-secret = /tests/static/keyfile

[args]
all.database.password = passwd
all.database.extended-names = true
all.log.api-enabled = true
all.javascript.allow-admin-execute = true
12 changes: 12 additions & 0 deletions tests/static/single-3.11.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[starter]
mode = single
address = 0.0.0.0
port = 8528

[auth]
jwt-secret = /tests/static/keyfile

[args]
all.database.password = passwd
all.database.extended-names = true
all.javascript.allow-admin-execute = true
21 changes: 17 additions & 4 deletions tests/test_document.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import asyncio

import pytest
from packaging import version

from arangoasync.exceptions import (
DocumentDeleteError,
Expand Down Expand Up @@ -306,7 +307,7 @@ async def test_document_find(doc_col, bad_col, docs):


@pytest.mark.asyncio
async def test_document_insert_many(doc_col, bad_col, docs):
async def test_document_insert_many(cluster, db_version, doc_col, bad_col, docs):
# Check errors
with pytest.raises(DocumentInsertError):
await bad_col.insert_many(docs)
Expand All @@ -328,6 +329,9 @@ async def test_document_insert_many(doc_col, bad_col, docs):
assert "error" in res

# Silent mode
if cluster and db_version < version.parse("3.12.0"):
pytest.skip("Skipping silent option")

result = await doc_col.insert_many(docs, silent=True)
assert len(result) == len(docs)
for res in result:
Expand All @@ -338,7 +342,7 @@ async def test_document_insert_many(doc_col, bad_col, docs):


@pytest.mark.asyncio
async def test_document_replace_many(doc_col, bad_col, docs):
async def test_document_replace_many(cluster, db_version, doc_col, bad_col, docs):
# Check errors
with pytest.raises(DocumentReplaceError):
await bad_col.replace_many(docs)
Expand All @@ -365,6 +369,9 @@ async def test_document_replace_many(doc_col, bad_col, docs):
assert "text" not in doc["new"]

# Silent mode
if cluster and db_version < version.parse("3.12.0"):
pytest.skip("Skipping silent option")

result = await doc_col.replace_many(docs, silent=True)
assert len(result) == 0
await doc_col.truncate()
Expand All @@ -375,7 +382,7 @@ async def test_document_replace_many(doc_col, bad_col, docs):


@pytest.mark.asyncio
async def test_document_update_many(doc_col, bad_col, docs):
async def test_document_update_many(db_version, cluster, doc_col, bad_col, docs):
# Check errors
with pytest.raises(DocumentUpdateError):
await bad_col.update_many(docs)
Expand All @@ -402,6 +409,9 @@ async def test_document_update_many(doc_col, bad_col, docs):
assert "text" in doc["new"]

# Silent mode
if cluster and db_version < version.parse("3.12.0"):
pytest.skip("Skipping silent option")

result = await doc_col.update_many(docs, silent=True)
assert len(result) == 0
await doc_col.truncate()
Expand All @@ -412,7 +422,7 @@ async def test_document_update_many(doc_col, bad_col, docs):


@pytest.mark.asyncio
async def test_document_delete_many(doc_col, bad_col, docs):
async def test_document_delete_many(db_version, cluster, doc_col, bad_col, docs):
# Check errors
with pytest.raises(DocumentDeleteError):
await bad_col.delete_many(docs)
Expand Down Expand Up @@ -444,6 +454,9 @@ async def test_document_delete_many(doc_col, bad_col, docs):
assert "error" in result[1]

# Silent mode
if cluster and db_version < version.parse("3.12.0"):
pytest.skip("Skipping silent option")

await doc_col.truncate()
_ = await doc_col.insert_many(docs)
result = await doc_col.delete_many(docs, silent=True)
Expand Down
Loading