summaryrefslogtreecommitdiff
path: root/numpy/distutils/exec_command.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/distutils/exec_command.py')
-rw-r--r--numpy/distutils/exec_command.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/numpy/distutils/exec_command.py b/numpy/distutils/exec_command.py
index 9f748e4cd..01cabc98e 100644
--- a/numpy/distutils/exec_command.py
+++ b/numpy/distutils/exec_command.py
@@ -421,11 +421,6 @@ def test_execute_in(**kws):
os.remove(tmpfile)
print ('ok')
-def test_svn(**kws):
- s, o = exec_command(['svn', 'status'],**kws)
- assert s, (s, o)
- print ('svn ok')
-
def test_cl(**kws):
if os.name=='nt':
s, o = exec_command(['cl', '/V'],**kws)
@@ -447,5 +442,4 @@ if __name__ == "__main__":
test(use_tee=1)
test_execute_in(use_tee=0)
test_execute_in(use_tee=1)
- test_svn(use_tee=1)
test_cl(use_tee=1)