[Noob Question] How do I check my changes? #10033
Answered
by
nicoddemus
hasnainzeenwala
asked this question in
Q&A
-
Hi! This is my first time trying to contribute to open source. I've forked and cloned the repo and I'm trying to figure out how do I check my changes? Like how do I import the pytest code modified by me locally into some python program to check if my changes have had the desired effect. |
Beta Was this translation helpful? Give feedback.
Answered by
nicoddemus
Jun 11, 2022
Replies: 1 comment 1 reply
-
Hi @hasnainzeenwala, You can install pytest into development mode by calling |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
hasnainzeenwala
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @hasnainzeenwala,
You can install pytest into development mode by calling
pip install -e .
from pytest's directory from within an activate virtual environment.