Skip to content
This repository has been archived by the owner on Sep 14, 2018. It is now read-only.

Commit

Permalink
Add the stdlib when running tests from a checkout.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhardy committed Oct 19, 2014
1 parent 596ae8d commit d373378
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Languages/IronPython/Scripts/run_interactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ def InitializePath(self):
searchPath.append(entryDir)
siteDir = Path.Combine(entryDir, "Lib")
searchPath.append(siteDir)
devStdLibDir = Path.Combine(entryDir, '../../External.LCA_RESTRICTED/Languages/IronPython/27/Lib')
searchPath.append(devStdLibDir)
dllsDir = Path.Combine(entryDir, "DLLs")
if Directory.Exists(dllsDir):
searchPath.append(dllsDir)
Expand Down

0 comments on commit d373378

Please sign in to comment.