We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb75dd9 commit ecbc140Copy full SHA for ecbc140
2 files changed
tests/scxml/conftest.py
@@ -45,7 +45,7 @@ def pytest_generate_tests(metafunc):
45
id=str(testcase_path.relative_to(TESTCASES_DIR)),
46
marks=compute_testcase_marks(testcase_path),
47
)
48
- for testcase_path in sorted(TESTCASES_DIR.glob("**/*.scxml"))
+ for testcase_path in TESTCASES_DIR.glob("**/*.scxml")
49
if "sub" not in testcase_path.name
50
],
51
tests/scxml/test_microwave.py
@@ -69,7 +69,7 @@ def microwave_cls(self):
69
class MicroWave(StateChart):
70
door_closed: bool = True
71
72
- class oven(State.Compound, name="Microwave oven", parallel=True):
+ class oven(State.Parallel, name="Microwave oven"):
73
class engine(State.Compound):
74
off = State(initial=True)
75
0 commit comments