Closed pavoljuhas closed 6 months ago
Problem: test_isolated_packages may run clashing parallel builds of a local cirq_core wheel.
test_isolated_packages
cirq_core
Solution: Run pip-install with the --no-clean option so parallel builds do not delete active files.
--no-clean
Also invoke isolated_packages_test.py with --enable-slow-tests in CI to include non-slow tests if ever added to that file.
--enable-slow-tests
Problem:
test_isolated_packages
may run clashing parallel builds of a localcirq_core
wheel.Solution: Run pip-install with the
--no-clean
option so parallel builds do not delete active files.Also invoke isolated_packages_test.py with
--enable-slow-tests
in CI to include non-slow tests if ever added to that file.