From 1388206f1a67a8a27f8660b21ed873b98cfccd42 Mon Sep 17 00:00:00 2001 From: Marc Abramowitz Date: Mon, 4 Jun 2012 15:57:30 -0700 Subject: [PATCH] Fix path to tests.py in setup.py to make `python setup.py test` work --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ef95ebb6..93ec3685 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ import httpie if sys.argv[-1] == 'test': - os.system('python tests.py') + os.system('python tests/tests.py') sys.exit()