Skip to content

Commit 0710847

Browse files
committed
Added 3.12.9 and 3.12.10 explicitly to the CI
1 parent 7efe263 commit 0710847

1 file changed

Lines changed: 20 additions & 13 deletions

File tree

.circleci/config.yml

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,18 @@ workflows:
3030
parameters:
3131
python_version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
3232
- integration-test:
33-
name: ArangoDB (enterprise, 3.12 << matrix.arangodb_config >>)
33+
name: ArangoDB (enterprise, 3.12.10 << matrix.arangodb_config >>)
3434
matrix:
3535
parameters:
3636
arangodb_config: ["single", "cluster"]
37-
arangodb_image: ["arangodb/enterprise:3.12"]
37+
arangodb_image: ["arangodb/enterprise:3.12.10"]
38+
arangodb_conf_version: ["3.12"]
39+
- integration-test:
40+
name: ArangoDB (enterprise, 3.12.9 << matrix.arangodb_config >>)
41+
matrix:
42+
parameters:
43+
arangodb_config: ["single", "cluster"]
44+
arangodb_image: ["arangodb/enterprise:3.12.9"]
3845
arangodb_conf_version: ["3.12"]
3946
- integration-test:
4047
name: ArangoDB (core-preview, 4.0-nightly << matrix.arangodb_config >>)
@@ -60,17 +67,17 @@ jobs:
6067
name: Install Dependencies
6168
command: python -m pip install .[dev]
6269
- run:
63-
name: Run black
64-
command: black --check --verbose --diff --color --config=pyproject.toml ./arangoasync ./tests/
70+
name: Run black
71+
command: black --check --verbose --diff --color --config=pyproject.toml ./arango ./tests/
6572
- run:
6673
name: Run flake8
67-
command: flake8 ./arangoasync ./tests
74+
command: flake8 ./arango ./tests
6875
- run:
6976
name: Run isort
70-
command: isort --check ./arangoasync ./tests
77+
command: isort --check ./arango ./tests
7178
- run:
7279
name: Run mypy
73-
command: mypy ./arangoasync
80+
command: mypy ./arango
7481
import-test:
7582
parameters:
7683
python_version:
@@ -90,12 +97,12 @@ jobs:
9097
command: python -m pytest tests/test_imports.py --skip-arango-setup --color=yes --code-highlight=yes
9198
integration-test:
9299
parameters:
93-
arangodb_config:
94-
type: string
95-
arangodb_image:
96-
type: string
97-
arangodb_conf_version:
98-
type: string
100+
arangodb_config:
101+
type: string
102+
arangodb_image:
103+
type: string
104+
arangodb_conf_version:
105+
type: string
99106
executor:
100107
name: arangodb-container
101108
arangodb_image: << parameters.arangodb_image >>

0 commit comments

Comments
 (0)