From 1c6f8894a5ca03949d780c694302e51e71215053 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Tue, 11 Aug 2015 10:43:28 +0300 Subject: [PATCH] setup.py: fix pytest invocation --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 92a33e5..7027b67 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ class PyTest(TestCommand): def run_tests(self): import sys import pytest - sys.exit(pytest.main(['tests'])) + sys.exit(pytest.main(['.'])) setup( name='amodem',