-
Notifications
You must be signed in to change notification settings - Fork 33
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
Change tox testenv:black envdir #1530
Conversation
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.
From my part this looks like a typo from our side but @IceKhan13 has more experience than me with tox.ini
so I would wait to merge it until his approval.
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 was a typo :) Thanks!
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.
@IceKhan13 , @korgan00 just a little comment from @garrison in this PR: Qiskit/qiskit-ibm-catalog#33
I think it's exactly what we are trying to solve in this PR.
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.
🚀
* change tox testenv:black envdir * remove envdir from tox.ini
Summary
I realized that if i run
tox -eblack && tox -elint
dependencies are installed twice everytime i execute it.If we change the
envdir
of black, we have the dependecies duplicated in both directories but they are installed only the first time so it is much faster.Is there any better option @IceKhan13 ?