diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2020-09-09 16:30:30 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2020-09-09 16:30:33 +0200 |
commit | 4619ed83a8906fd6700850d70bf99d58bc9776ab (patch) | |
tree | ec87229c34977e29c784f86f4f4067e429e72b04 /common/scripts | |
parent | df2bdeb86d2aae337099db86b87de4c353592185 (diff) |
Add not hwrequired to regular script case
Qemu by default has no hardware attached. Limit the run to not
execut hardware-specific tests.
Bug-AGL: SPEC-3572
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Change-Id: I3305d0c34737cf026989e2bde197d8ce3d96db19
Diffstat (limited to 'common/scripts')
-rwxr-xr-x | common/scripts/pyagl-regular-lava.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/scripts/pyagl-regular-lava.sh b/common/scripts/pyagl-regular-lava.sh index db1799c..a64d9d8 100755 --- a/common/scripts/pyagl-regular-lava.sh +++ b/common/scripts/pyagl-regular-lava.sh @@ -2,6 +2,6 @@ # for now play safe and only expect ethernet export AGL_AVAILABLE_INTERFACES="ethernet" -pytest --color=no --show-capture=no -k regular /usr/lib/python?.?/site-packages/pyagl/tests/ -L +pytest --color=no --show-capture=no -k "regular and not hwrequired" /usr/lib/python?.?/site-packages/pyagl/tests/ -L |