From 32799067374744e420cc5b2284203b8bda27c878 Mon Sep 17 00:00:00 2001 From: Jonathan Halcrow Date: Fri, 6 Apr 2012 12:50:16 -0300 Subject: [PATCH] Correct path to test_requests.py for setup.py test --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fe0aef5d..3133a979 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ if sys.argv[-1] == 'publish': sys.exit() if sys.argv[-1] == 'test': - os.system('python test_requests.py') + os.system('python tests/test_requests.py') sys.exit() required = ['certifi>=0.0.7',]