Lines Matching refs:shell
64 :zephyr_file:`samples/subsys/testsuite/pytest/shell/pytest/test_shell.py`. Using the configuration
96 $ ./scripts/twister --platform native_sim -T samples/subsys/testsuite/pytest/shell \
97 -s samples/subsys/testsuite/pytest/shell/sample.pytest.shell \
125 shell subsection
128 Provide a `Shell <shell_class_>`_ class object with methods used to interact with shell application.
129 It calls ``wait_for_promt`` method, to not start scenario until DUT is ready. The shell fixture
130 calls ``dut`` fixture, hence has access to all its methods. The ``shell`` fixture adds methods
131 optimized for interactions with a shell. It can be used instead of ``dut`` for tests. Scope of this
139 def test_shell(shell: Shell):
140 shell.exec_command('help')
158 def test_upgrade(dut: DeviceAdapter, shell: Shell, mcumgr: McuMgr):