Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The test skip we had in place on test_examples was for macOS with python 3.8. This was because when we first enabled python 3.8 support, the change to use spawn as the default macOS multiprocessing launch method was causing the tests to fail with the way the examples are written (without using '__name__ == "__main__"'). When we added Python 3.9 support in Qiskit#5189 these tests were run because skip was only on 3.8. While the tests appear to work most of the time (and passed ci in Qiskit#5189) as these jobs have been running in CI the test_examples module has occasionally been segfaulting when running the example, which has resulted in a failure rate of roughly 8-10%. This commit expands the macOS skip on the tests to be >= 3.8 so we avoid these failure conditions.
- Loading branch information