[tor-commits] [stem/master] Integ test missing --dryrun argument

atagar at torproject.org atagar at torproject.org
Mon Aug 28 19:38:55 UTC 2017


commit eed9a6f2dd917c785440162132f6fb0264530771
Author: Damian Johnson <atagar at torproject.org>
Date:   Mon Aug 28 12:37:32 2017 -0700

    Integ test missing --dryrun argument
    
    Oops, earlier change to add the --dryrun argument to our setup.py broke one of
    our integ tests.
---
 test/integ/installation.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/integ/installation.py b/test/integ/installation.py
index e52cc637..04d8d1fd 100644
--- a/test/integ/installation.py
+++ b/test/integ/installation.py
@@ -114,7 +114,7 @@ class TestInstallation(unittest.TestCase):
 
     try:
       try:
-        stem.util.system.call('%s setup.py sdist' % PYTHON_EXE, timeout = 60, cwd = test.STEM_BASE)
+        stem.util.system.call('%s setup.py sdist --dryrun' % PYTHON_EXE, timeout = 60, cwd = test.STEM_BASE)
       except Exception as exc:
         raise AssertionError("Unable to run 'python setup.py sdist': %s" % exc)
 



More information about the tor-commits mailing list