diff --git a/.travis.yml b/.travis.yml index fee8a58..8a7d245 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,8 +15,7 @@ env: install: - pip install Django==$DJANGO - python setup.py install - - pip install coverage - - pip install mock + - pip install -r dev-requirements.txt script: coverage run test.py diff --git a/dev-requirements.txt b/dev-requirements.txt new file mode 100644 index 0000000..dca5d48 --- /dev/null +++ b/dev-requirements.txt @@ -0,0 +1,3 @@ +nose==1.3.7 +coverage==5.1 +mock \ No newline at end of file diff --git a/setup.py b/setup.py index dda0a01..78418e1 100755 --- a/setup.py +++ b/setup.py @@ -10,9 +10,6 @@ 'pytz', 'django-suit', ], - setup_requires=[ - 'nose>=1.0', - ], url='https://github.com/f213/django-suit-daterange-filter', author='Fedor Borshev', author_email='f@f213.in',