Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@ python: "3.7"
# command to install dependencies
install:
- pip install pipenv
- pip install pytest-cov
- pip install coveralls
- pipenv install --dev
# command to run tests
script:
- flake8 app --statistics --count
- pipenv run pytest
- pipenv run pytest --cov=app/
after_success:
- coveralls
2 changes: 2 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ PyYAML = "*"
flask-pytest = "*"
pytest = "*"
dataclasses = "*"
pytest-cov = "*"
coveralls = "*"

[dev-packages]

Expand Down
231 changes: 172 additions & 59 deletions Pipfile.lock

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