summaryrefslogtreecommitdiff
path: root/numpy/distutils/exec_command.py
diff options
context:
space:
mode:
authorJulian Taylor <jtaylor.debian@googlemail.com>2017-03-24 18:02:38 +0100
committerJulian Taylor <jtaylor.debian@googlemail.com>2017-03-24 21:55:32 +0100
commitcd2c4d9857c8cc5936d0f1424ec4e9c7b5c2a6eb (patch)
tree13507d27ef39a8460c4cdcd9ac1928ce6ded1e39 /numpy/distutils/exec_command.py
parent746fb50d01839c7f002a543424b62da43968725b (diff)
downloadnumpy-cd2c4d9857c8cc5936d0f1424ec4e9c7b5c2a6eb.tar.gz
TST: remove exec_command svn test
Not sure what it even tests, it fails with svn installed.
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)