test: run test_help for browser and dashboard

This commit is contained in:
Sebastien Bourdeauducq 2019-12-12 10:34:44 +08:00
parent 007a98bac4
commit cb0515e677
1 changed files with 1 additions and 2 deletions

View File

@ -7,7 +7,6 @@ import unittest
class TestFrontends(unittest.TestCase): class TestFrontends(unittest.TestCase):
def test_help(self): def test_help(self):
"""Test --help as a simple smoke test against catastrophic breakage.""" """Test --help as a simple smoke test against catastrophic breakage."""
# Skip tests for GUI programs on headless CI environments.
commands = { commands = {
"aqctl": [ "aqctl": [
"corelog" "corelog"
@ -15,7 +14,7 @@ class TestFrontends(unittest.TestCase):
"artiq": [ "artiq": [
"client", "compile", "coreanalyzer", "coremgmt", "client", "compile", "coreanalyzer", "coremgmt",
"netboot", "flash", "master", "mkfs", "route", "netboot", "flash", "master", "mkfs", "route",
"rtiomon", "run", "session" "rtiomon", "run", "session", "browser", "dashboard"
] ]
} }