Skip to content

Commit 65b701a

Browse files
committed
sync pyproject.toml
1 parent b00a4f0 commit 65b701a

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

pyproject.toml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,3 +145,37 @@ skip = ".git,*.pdf,*.svg,*.csv,*.ipynb,*.drawio"
145145
# numer -- numerator variable
146146
# astroid -- Python library name (not "asteroid")
147147
ignore-words-list = "rever,numer,astroid"
148+
149+
[tool.pytest_env]
150+
# Default values - pytest fixtures will override with actual container details
151+
DJ_USER="root"
152+
DJ_PASS="password"
153+
DJ_TEST_USER="datajoint"
154+
DJ_TEST_PASSWORD="datajoint"
155+
S3_ACCESS_KEY="datajoint"
156+
S3_SECRET_KEY="datajoint"
157+
S3_BUCKET="datajoint.test"
158+
PYTHON_USER="dja"
159+
JUPYTER_PASSWORD="datajoint"
160+
161+
162+
[tool.pixi.workspace]
163+
channels = ["conda-forge"]
164+
platforms = ["linux-64", "osx-arm64", "linux-aarch64"]
165+
166+
[tool.pixi.pypi-dependencies]
167+
datajoint = { path = ".", editable = true }
168+
169+
[tool.pixi.environments]
170+
default = { solve-group = "default" }
171+
dev = { features = ["dev"], solve-group = "default" }
172+
test = { features = ["test"], solve-group = "default" }
173+
174+
[tool.pixi.tasks]
175+
176+
[tool.pixi.dependencies]
177+
python = ">=3.9,<3.14"
178+
graphviz = ">=13.1.2,<14"
179+
180+
[tool.pixi.activation]
181+
scripts=["activate.sh"]

0 commit comments

Comments
 (0)