gh453 change the test flow for L3 dsAudio_test24#482
gh453 change the test flow for L3 dsAudio_test24#482
Conversation
|
All contributors have signed the CLA ✍️ ✅ |
|
recheck |
There was a problem hiding this comment.
Pull Request Overview
This PR restructures the Primary and Secondary language test to separate them into distinct test phases. The code now:
- Tests secondary languages first, then disables ports before moving to primary language testing
- Adds a sleep delay between secondary and primary language test phases
- Removes a trailing blank line at the end of the test function
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| time.sleep(3) | ||
|
|
There was a problem hiding this comment.
Line 122 uses tab characters for indentation instead of spaces. Python PEP 8 requires spaces for indentation. Replace the tab with appropriate spaces to maintain consistent indentation.
| time.sleep(3) | |
| # (blank line preserved, now with spaces) | |
| time.sleep(3) | |
|
|
||
| time.sleep(3) | ||
|
|
There was a problem hiding this comment.
Line 124 uses tab characters for indentation instead of spaces. Python PEP 8 requires spaces for indentation. Replace the tab with appropriate spaces to maintain consistent indentation.
| time.sleep(3) | |
| time.sleep(3) |
Modified the flow of iterating primary and secondary languages.
As suggested, done separate iteration for primary and secondary languages.