Skip to content

Commit 0415a15

Browse files
committed
fix: remove unused wokwi-cli requirement from tests
1 parent 3f29de1 commit 0415a15

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

pytest-embedded-wokwi/tests/test_wokwi.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,13 @@
11
import os
2-
import shutil
32

43
import 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-
125
wokwi_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
2012
def 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
4536
def test_pexpect_by_wokwi_esp32_arduino(testdir):
4637
testdir.makepyfile("""

0 commit comments

Comments
 (0)