1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

setup: fix setup.py again

This commit is contained in:
Ilya Kreymer 2015-11-04 16:33:19 -08:00
parent c107dd3af1
commit 6c76675fe7

View File

@ -22,11 +22,12 @@ long_description = open('README.rst').read()
class PyTest(TestCommand):
user_options = []
def initialize_options(self):
TestCommand.initialize_options(self)
self._argv = []
pass
def finalize_options(self):
pass
TestCommand.finalize_options(self)
self.test_suite = True
def run_tests(self):
import pytest