Replies: 1 comment 6 replies
-
I'm not sure You can use |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Consider the two following scenarios:
Non-relative import
Lets say I have the following files
Then running
pytest test.py
gives nice assert output:but in the next scenario:
Relative import
Lets say I have the following files
Differnce to the first scenario is:
Then running
pytest test.py
only gives.ie the rewrite did not work.
Any idea how to do this correctly?
Beta Was this translation helpful? Give feedback.
All reactions