We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 759974e commit 1695e79Copy full SHA for 1695e79
.github/scripts/tests_run.sh
@@ -40,6 +40,9 @@ function run_test() {
40
41
if [ $platform == "wokwi" ]; then
42
extra_args="--target $target --embedded-services arduino,wokwi --wokwi-timeout=$wokwi_timeout"
43
+ if [[ -f "$sketchdir/scenario.yaml" ]]; then
44
+ extra_args+=" --wokwi-scenario $sketchdir/scenario.yaml"
45
+ fi
46
else
47
extra_args="--embedded-services esp,arduino"
48
fi
tests/requirements.txt
@@ -1,6 +1,6 @@
1
cryptography>=2.1.4
2
--only-binary cryptography
3
pytest-cov
4
-pytest-embedded-serial-esp>=1.3.4
5
-pytest-embedded-arduino>=1.3.4
6
-pytest-embedded-wokwi>=1.3.5
+pytest-embedded-serial-esp>=1.10.0
+pytest-embedded-arduino>=1.10.0
+pytest-embedded-wokwi>=1.10.0
0 commit comments