You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In PR #3409, these were made to wrap multiple similar versions to avoid duplicating test code.
The loop that runs these tests ends with test.pass_test(), which quits the running test at that point, as a result only the first pass through the loop actually runs (the current expected list is ['8.0', '9.0', '10.0', '11.0', '12.0', '14.0', '14.1', '14.2', '14.3'], so it misses quite a bit).
In one of the above tests, /test/MSVS/vs-files.py each time through the loop also sets something intentionally strange in os.environ['PYTHON_ROOT'], so that also needs to be reset before proceeding or the next pass through the loop will fail.
The text was updated successfully, but these errors were encountered:
mwichmann
added
the
testsuite
Things that only affect the SCons testing. Do not use just because a PR has tests.
label
Oct 7, 2024
As discovered by @jcbrill and mentioned in #4608, some of the tests of building a Visual Studio project file don't run as expected. The tests are
In PR #3409, these were made to wrap multiple similar versions to avoid duplicating test code.
The loop that runs these tests ends with
test.pass_test()
, which quits the running test at that point, as a result only the first pass through the loop actually runs (the current expected list is['8.0', '9.0', '10.0', '11.0', '12.0', '14.0', '14.1', '14.2', '14.3']
, so it misses quite a bit).In one of the above tests,
/test/MSVS/vs-files.py
each time through the loop also sets something intentionally strange inos.environ['PYTHON_ROOT']
, so that also needs to be reset before proceeding or the next pass through the loop will fail.The text was updated successfully, but these errors were encountered: