Skip to content
This repository was archived by the owner on Sep 14, 2020. It is now read-only.

Treat all warnings in tests as errors, reduce verbosity #312

Merged
merged 15 commits into from
Feb 20, 2020
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fail on any warnings in tests
  • Loading branch information
nolar committed Feb 20, 2020
commit e185249a0d6245a22deb51802bfb18d552a18597
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ before_script:
- tools/kubernetes-client.sh

script:
- pytest --cov=kopf --cov-branch
- pytest -Werror --cov=kopf --cov-branch
- coveralls
- codecov --flags unit
- pytest --only-e2e # NB: after the coverage uploads!
- pytest -Werror --only-e2e # NB: after the coverage uploads!
- mypy kopf --strict --pretty

deploy:
Expand Down