blob: 06dddb9437b2852b7af0f5f1485403a876a90f04 (
plain)
1
2
3
4
5
6
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 and not internet" /usr/lib/python?.?/site-packages/pyagl/tests/ -L
|