mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 21:41:08 +00:00
9 lines
225 B
Python
9 lines
225 B
Python
|
"""
|
||
|
Minimalist file that allows pytest to find and run the Test unittest. For details, see:
|
||
|
http://doc.pytest.org/en/latest/goodpractices.html#conventions-for-python-test-discovery
|
||
|
"""
|
||
|
|
||
|
from .prime_check import Test
|
||
|
|
||
|
Test()
|