From 3d7e07218d3da560bd1429ab132f22a7ed823942 Mon Sep 17 00:00:00 2001 From: "Michael Hirsch, Ph.D" Date: Wed, 20 Jun 2018 14:44:37 -0400 Subject: [PATCH] init --- tests/test_all.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 tests/test_all.py 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()