# a.py
def make_tests(a, b)
@test("{a} + {b} = {b} + {a}")
def _(a=a, b=b):
assert a + b == b + a
@test("{a} * 2 == {a} + {a}")
def _(a=a):
assert a * 2 == a + a
# b.py
make_tests(2, 3)
make_tests(4, 8)
Doesn't detect the tests.
It appears to be caused by this line in testing.py:
is_home_module: bool = "." not in module_name
if is_test_module_name(module_name) and is_home_module:
@darrenburns I'm wondering what's the reason for this? Why do the tests have to be declared in the home module?
I noticed this behavior:
Doesn't detect the tests.
It appears to be caused by this line in testing.py:
@darrenburns I'm wondering what's the reason for this? Why do the tests have to be declared in the home module?
Is there any other way to do this?