aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>2020-09-14 15:53:21 +0200
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2020-09-14 15:53:21 +0200
commit67d59710fae4eb05fcd4656b6b204caa9506df7d (patch)
tree58359661a8e5276294b6ac1f3f38cb026821728e /common
parent4619ed83a8906fd6700850d70bf99d58bc9776ab (diff)
Change regular pyagl invocation to nohw
In CI we will execute the 'not hwrequired' flag. Make this the default case in the test-suites. Bug-AGL: SPEC-3572 Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Change-Id: I370bb3c12953d7455a1a4c06c573cbc10ee17bda
Diffstat (limited to 'common')
-rwxr-xr-xcommon/scripts/pyagl-nohw-lava.sh7
-rwxr-xr-xcommon/scripts/pyagl-regular-lava.sh7
2 files changed, 7 insertions, 7 deletions
diff --git a/common/scripts/pyagl-nohw-lava.sh b/common/scripts/pyagl-nohw-lava.sh
new file mode 100755
index 0000000..1b0c7f3
--- /dev/null
+++ b/common/scripts/pyagl-nohw-lava.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+# for now play safe and only expect ethernet
+export AGL_AVAILABLE_INTERFACES="ethernet"
+
+pytest --color=no --show-capture=no -k "not hwrequired" /usr/lib/python?.?/site-packages/pyagl/tests/ -L
+
+
diff --git a/common/scripts/pyagl-regular-lava.sh b/common/scripts/pyagl-regular-lava.sh
deleted file mode 100755
index a64d9d8..0000000
--- a/common/scripts/pyagl-regular-lava.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-# for now play safe and only expect ethernet
-export AGL_AVAILABLE_INTERFACES="ethernet"
-
-pytest --color=no --show-capture=no -k "regular and not hwrequired" /usr/lib/python?.?/site-packages/pyagl/tests/ -L
-
-