blob: 808879cae790e2b0d2d577a60aa4bd94f6d67e70 (
plain)
1
2
3
4
5
6
7
|
"""My default pytest will assume that all files prefixed with
'test' are test files. This file is here to make sure that
pytest only runs on the files it should run on.
"""
def test_1():
assert 1 == 2
|