Add PyTest IDs for better readability and filtering#409
Merged
chrisjkuch merged 7 commits intodrivendataorg:masterfrom Mar 5, 2025
Merged
Add PyTest IDs for better readability and filtering#409chrisjkuch merged 7 commits intodrivendataorg:masterfrom
chrisjkuch merged 7 commits intodrivendataorg:masterfrom
Conversation
Contributor
|
Sorry for the delay on this @GatlenCulp - would you mind fixing the linting issue so I can run the tests? |
chrisjkuch
reviewed
Feb 16, 2025
fix linting error
chrisjkuch
reviewed
Feb 16, 2025
trying again to fix linting
chrisjkuch
requested changes
Feb 27, 2025
Contributor
chrisjkuch
left a comment
There was a problem hiding this comment.
One small comment, then looking for another reviewer and we should be good to go!
chrisjkuch
approved these changes
Mar 4, 2025
proinsias
added a commit
to proinsias/cookiecutter-data-science-proinsias
that referenced
this pull request
Nov 3, 2025
* upstream/master: (24 commits) Add poetry as an env manager (drivendataorg#460) Support pixi as environment manager (drivendataorg#459) Docs: Add guidelines for contributing and requesting tools (drivendataorg#456) Fix terminal animation generation in docs build (drivendataorg#451) Fix failing pipenv installation on Windows GH actions runners (drivendataorg#453) Fix typo in using-the-template.md (drivendataorg#448) Bump to v2.2.0 [skip ci] Update HISTORY.md [skip ci] Add option for tests (drivendataorg#447) Resolve python version to work with compatible operator (drivendataorg#446) Add pyproject.toml as a dependencies file option (drivendataorg#436) Make PyPI badges links to PyPI (drivendataorg#440) Update to version v2.1.0 (drivendataorg#438) Add back isort configuration that was removed in drivendataorg#387 (drivendataorg#439) add badges to readme and docs homepage (drivendataorg#434) Added support for the uv package and project manager (drivendataorg#408) Add ruff as default linting + formatting option (drivendataorg#387) Add PyTest IDs for better readability and filtering (drivendataorg#409) prepare for 2.0.1 release by bumping version in pyproject.toml and updating change log (drivendataorg#422) Fix pre-prompt ccds version error (drivendataorg#426) ...
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This small PR adds dynamically generated IDs for the config parameters. This makes it immediately clear which configuration failed and allows for filtering with
pytest -k EXPRESSION. Ex: To only run the tests using conda and mkdocs you can dopytest -k "conda and mkdocs".Before:

After:

(Screenshots from VSCode Test Explorer)
The changes to
pyproject.tomland.gitignoreare small changes for my local development which you're free to add or ignore.