File size: 166 Bytes
40eb648
223c43b
 
 
 
 
40eb648
 
 
1
2
3
4
5
6
7
8
9
10
import sys

import pytest

if __name__ == "__main__":
    # Run pytest on the tests directory
    exit_code = pytest.main(["-v", "./tests"])

    sys.exit(exit_code)