diff options
author | Scott Murray <scott.murray@konsulko.com> | 2020-11-10 15:52:33 -0500 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2020-11-11 12:35:07 +0000 |
commit | c18df018bae551a0e42d8348cb87b6e24203ca80 (patch) | |
tree | f95fca9d62a8404c259b9abb1e743edb29fbd65b | |
parent | e1e230049f6fdaf0f03dbc5d37797b1605a6e969 (diff) |
Add simple wrapper script
Add simple "pyagl" script that wraps running pytest.
Bug-AGL: SPEC-3684
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: Ibdd71359fbdd82f10a277903a86bca5f92d8d9be
-rwxr-xr-x | pyagl/scripts/pyagl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyagl/scripts/pyagl b/pyagl/scripts/pyagl new file mode 100755 index 0000000..17ac1f5 --- /dev/null +++ b/pyagl/scripts/pyagl @@ -0,0 +1,3 @@ +#!/bin/sh +cd /usr/lib/python3.*/site-packages/pyagl/tests +exec /usr/bin/pytest "$@" |