diff --git a/tests/test_all.py b/tests/test_all.py new file mode 100755 index 0000000..638f559 --- /dev/null +++ b/tests/test_all.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python +import pytest +import subprocess + + +def test_all(): + subprocess.check_call(['findssh']) + + +if __name__ == '__main__': + pytest.main()