2019-08-13 11:50:13 +02:00
|
|
|
"""
|
|
|
|
Minimalist file that allows pytest to find and run the Test unittest. For details, see:
|
2022-10-16 16:43:29 +09:00
|
|
|
https://doc.pytest.org/en/latest/goodpractices.html#conventions-for-python-test-discovery
|
2019-08-13 11:50:13 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
from .prime_check import Test
|
|
|
|
|
|
|
|
Test()
|