##// END OF EJS Templates
fix various tests on Windows...
fix various tests on Windows Windows had a variety of mostly path-related test failures remaining. Most of these were Windows-excluding assumptions in the tests themselves. The one change to the code itself is stripping quotation marks on Windows in magic_cd. os.chdir doesn't like the quotes on Windows. absolute-path completions are now listed as a KnownFailure on Windows

File last commit:

r2460:e8303d57
r4105:52601805
Show More
setupegg.py
6 lines | 156 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
# Import setuptools and call the actual setup
import setuptools
execfile('setup.py')