Skip to content

Commit

Permalink
Move more test deps into setup.py and .travis.yml
Browse files Browse the repository at this point in the history
Until pypa/pipenv#857 is fixed,
pipenv and hypothesis don't quite play will together.
  • Loading branch information
jtdoepke committed Feb 25, 2018
1 parent 588e2af commit 5303edb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 80 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@ stages:
- lint
- test

install:
- pip install --upgrade pipenv codecov
- pipenv install --dev --deploy --system
install: pip install --upgrade -e '.[test]'

script: pytest -ra --cov=pytest_localstack

Expand All @@ -34,6 +32,7 @@ jobs:
- stage: lint
python: '3.6'
services: []
install: pip install --upgrade pipenv flake8 flake8-debugger flake8-docstrings flake8-isort
script:
- pipenv check
- flake8
1 change: 0 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,3 @@ bumpversion = "*"
"flake8-docstrings" = "*"
"flake8-isort" = "*"
isort = "*"
pytest-cov = "*"
84 changes: 8 additions & 76 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
# Dependencies to run the tests for this Python library.
TEST_REQUIREMENTS = [
'hypothesis[faker]',
'pytest-cov',
]

HERE = os.path.dirname(os.path.abspath(__file__))
Expand Down

0 comments on commit 5303edb

Please sign in to comment.