Remove line that adds chocolatey/bin
folder to GITHUB_PATH
from CI.
#7920
+0
−1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
We have an issue with our CI in that the job for
vs2022
is failing to execute some tests that depend on a python script, because the python interpreter fails to be instantiated (that is, it fails during binary initialisation by failing to link against a DLL).This version of Python appears to be preinstalled in some fashion (either it comes with
chocolatey
, or is installed as a transitive dependency of other dependencies of our build), but the end result is that we fail at running some of the tests.This change appears in our experiments to fix the situation with the bad binary that is installed for Python with
chocolatey
, by removing the folder from the path, we don't trigger execution with the bad binary.