Closed dottspina closed 2 years ago
The Python 3.8 build ubuntu-latest fails with:
./tests/functional/features/steps/common.py:336:11: E275 missing whitespace after keyword
Fixed by the obvious patch bellow:
--- a/tests/functional/features/steps/common.py +++ b/tests/functional/features/steps/common.py @@ -333,7 +333,7 @@ def step_process_jlink_connected(context): process.start() process.join() - assert(all(queue.get() for _ in range(2))) + assert all(queue.get() for _ in range(2))
The Python 3.8 build ubuntu-latest fails with:
Fixed by the obvious patch bellow: