Replies: 1 comment 1 reply
-
Hi @briankosw, TBH I don't follow what's happening precisely...
Fine so far.
But here I get a bit lost, you get a warning from
But the message above mentions Regardless a few hints that might help:
Hope this helps! |
Beta Was this translation helpful? Give feedback.
-
Description:
In my
model
directory, I have a module namedmodel.py
, which contains a method calledbuild_model()
. In my test directory, I have a test directorymodel
and a naturally a module namedtest_model.py
, in which I have atest_build_model()
method. I keep getting this particular warning:which I can only get rid of if I rename the test method from
test_build_model()
totest_model()
, which is inconvenient and I don't want to see warnings that aren't actually warnings. I also get the same error for a couple other functions. How would I fix this behavior?Beta Was this translation helpful? Give feedback.
All reactions