-
Notifications
You must be signed in to change notification settings - Fork 92
use pytest to manage docker container startup for tests #1269
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
Merged
dimitri-yatsenko
merged 11 commits into
datajoint:pre/v2.0
from
d-v-b:feat/pytest-container-management
Sep 19, 2025
Merged
Changes from 3 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
ebeab88
use pytest to manage docker container startup for tests
d-v-b 718e219
fix environment variable mismatch
d-v-b 1252add
add database.port to settings.py, and update conftest
d-v-b fecbb83
revert python version floor increment
d-v-b 76aaf5e
use normal healthcheck intervals
d-v-b c68f1df
revert change to healthcheck, because the nanoseconds were correct
d-v-b 3a34d82
update gitignore
d-v-b f73d7c7
add pixi lockfile
d-v-b de13442
update .gitattributes for pixi
d-v-b 64fc0ac
lint
d-v-b b3f82d9
add astroid exemption to codespell rc
d-v-b File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,7 +22,7 @@ dependencies = [ | |
| "urllib3", | ||
| "setuptools", | ||
| ] | ||
| requires-python = ">=3.9,<4.0" | ||
| requires-python = ">=3.11,<4.0" | ||
| authors = [ | ||
| {name = "Dimitri Yatsenko", email = "[email protected]"}, | ||
| {name = "Thinh Nguyen", email = "[email protected]"}, | ||
|
|
@@ -78,11 +78,16 @@ Repository = "https://github.com/datajoint/datajoint-python" | |
| dj = "datajoint.cli:cli" | ||
| datajoint = "datajoint.cli:cli" | ||
|
|
||
| [project.optional-dependencies] | ||
| [dependency-groups] | ||
| test = [ | ||
d-v-b marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "pytest", | ||
| "pytest-cov", | ||
| "pytest-env", | ||
| "docker", | ||
| "requests", | ||
| ] | ||
|
|
||
| [project.optional-dependencies] | ||
d-v-b marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| dev = [ | ||
| "pre-commit", | ||
| "black==24.2.0", | ||
|
|
@@ -103,3 +108,15 @@ package-dir = {"" = "src"} | |
|
|
||
| [tool.setuptools.dynamic] | ||
| version = { attr = "datajoint.version.__version__"} | ||
|
|
||
| [tool.pytest_env] | ||
| # Default values - pytest fixtures will override with actual container details | ||
| DJ_USER="root" | ||
| DJ_PASS="password" | ||
| DJ_TEST_USER="datajoint" | ||
| DJ_TEST_PASSWORD="datajoint" | ||
| S3_ACCESS_KEY="datajoint" | ||
| S3_SECRET_KEY="datajoint" | ||
| S3_BUCKET="datajoint.test" | ||
| PYTHON_USER="dja" | ||
| JUPYTER_PASSWORD="datajoint" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.