Skip to content

Commit

Permalink
++requirements for test
Browse files Browse the repository at this point in the history
  • Loading branch information
uralbash committed Jul 3, 2015
1 parent a965f94 commit 06b0a73
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.eggs
*.egg-info
*.map
*.pyc
Expand Down
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ python:
- "3.3"
- "3.4"

install:
- pip install -r requirements.txt
- pip install -r requirements-test.txt

script:
# Nosetests
- python setup.py nosetests
Expand Down
1 change: 1 addition & 0 deletions requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
nose
webtest
coverage
coveralls
7 changes: 7 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[nosetests]
nocapture=1
detailed-errors=1
with-coverage=1
cover-package=ps_tree
cover-erase=1
with-doctest=1
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ def read(name):
description='JQuery tree structure in pyramid_sacrud or anywhere else.',
long_description=read('README.rst'),
install_requires=read('requirements.txt'),
tests_require=read('requirements.txt') + read('requirements-test.txt'),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
Expand Down

0 comments on commit 06b0a73

Please sign in to comment.