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 aef39b4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 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
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ def pip(filename):
tests_require = pip('test.pip') + all_require
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 aef39b4

Please sign in to comment.