Skip to content

Commit

Permalink
Fixed requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
noirbizarre committed Mar 4, 2017
1 parent fa97907 commit 421a245
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ python:
- pypy3

install:
- pip install -e .[test,qa] invoke
- pip install -e .[ci]
- pip install coveralls
before_script:
- docker-compose up -d
Expand Down
3 changes: 3 additions & 0 deletions requirements/ci.pip
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
invoke>=0.13
-r test.pip
-r qa.pip
3 changes: 3 additions & 0 deletions requirements/test.pip
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
-r s3.pip
-r gridfs.pip
-r swift.pip
mock
pytest
pytest-faker
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,11 @@ def pip(filename):
swift_require = pip('swift.pip')
gridfs_require = pip('gridfs.pip')
all_require = s3_require + swift_require + gridfs_require
tests_require = pip('test.pip') + all_require
tests_require = pip('test.pip')
doc_require = pip('doc.pip')
qa_require = pip('qa.pip')
dev_require = tests_require + ['invoke', 'tox', 'sphinx', 'alabaster']
ci_require = pip('ci.pip')
dev_require = pip('develop.pip')

setup(
name='flask-fs',
Expand All @@ -64,6 +65,7 @@ def pip(filename):
'all': all_require,
'test': tests_require,
'qa': tests_require,
'ci': ci_require,
'dev': dev_require,
},
license='MIT',
Expand Down

0 comments on commit 421a245

Please sign in to comment.