File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed
pytest-embedded-wokwi/tests Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change 11import os
2- import shutil
32
43import pytest
54
6- wokwi_cli_required = pytest .mark .skipif (
7- shutil .which ('wokwi-cli' ) is None ,
8- reason = 'Please make sure that `wokwi-cli` is in your PATH env var. '
9- + 'To install: https://docs.wokwi.com/wokwi-ci/getting-started#cli-installation' ,
10- )
11-
125wokwi_token_required = pytest .mark .skipif (
136 os .getenv ('WOKWI_CLI_TOKEN' ) is None ,
147 reason = 'Please make sure that `WOKWI_CLI_TOKEN` env var is set. Get a token here: https://wokwi.com/dashboard/ci' ,
158)
169
1710
18- @wokwi_cli_required
1911@wokwi_token_required
2012def test_pexpect_by_wokwi_esp32 (testdir ):
2113 testdir .makepyfile ("""
@@ -40,7 +32,6 @@ def test_pexpect_by_wokwi(dut):
4032 result .assert_outcomes (passed = 1 )
4133
4234
43- @wokwi_cli_required
4435@wokwi_token_required
4536def test_pexpect_by_wokwi_esp32_arduino (testdir ):
4637 testdir .makepyfile ("""
You can’t perform that action at this time.
0 commit comments