-
Notifications
You must be signed in to change notification settings - Fork 8
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
Making testing-framework module #10
Comments
Sounds like a good idea. Let's get some feedback from some python wizards, @jameskermode @noambernstein @stenczelt |
I have no objection, sounds like it would work well. |
Sounds great, let's do it! Tell me if you need help! I would rather not encourage Are you sure using an exec is the best way of handling versions in your version = {}
with open("version.py") as fp:
exec(fp.read(), version) perhaps |
Thanks for the comments!! I had a quick look into the |
I was wondering if we could add a
setup.py
and change the file strucutre to allow for thetesting-framework
functions to be imported.Benefits:
import utils *
, one could importtestingframeowrk.utils
, allowing for better editor support and more varied folder structure.To Do:
testingframework
, such that it could be imported asfrom testingframework.utilities import *
, note that testing-framework would not be valid subdirectory name.setup.py
file, something like below.Potential setup.py
Questions
The text was updated successfully, but these errors were encountered: