-
Notifications
You must be signed in to change notification settings - Fork 29
Rename test modules to not collide #1639
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
base: main
Are you sure you want to change the base?
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
47e28c5
to
77ce0d5
Compare
@thegreyd: The following test failed, say
Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
I like the idea, tried the PR out but running
|
PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
@@ -22,15 +22,15 @@ | |||
long_description=open('README.md').read(), | |||
url="https://github.com/openshift-eng/art-tools/tree/main/doozer", | |||
license="Apache License, Version 2.0", | |||
packages=find_packages(exclude=["tests", "tests.*", "tests_functional", "tests_functional.*"]), | |||
packages=find_packages(exclude=["tests.*"]), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be
packages=find_packages(exclude=["tests.*"]), | |
packages=find_packages(exclude=["tests_doozer", "tests_doozer.*", "tests_functional_doozer", "tests_functional_doozer.*"]), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thinking we need similar changes for elliott and pyartcd.
When working in art-tools repo/dir as a whole, test discovery with pytest does not work correctly,
because of
tests
module name collision.pytest --co
- this stumps IDEs/extensions/workflows that rely on pytest discovery in the folder.To get around this, rename test modules to align with their parent module, e.g.
tests_doozer
etc.With this change
pytest --co
andpytest .
in root dir should be green