Skip to content

Commit

Permalink
append coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
xoxys committed Jun 3, 2020
1 parent 8dde726 commit 04d9b92
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .drone.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ local PythonVersion(pyversion='3.5') = {
commands: [
'pip install pipenv -qq',
'pipenv --bare install --dev --keep-outdated',
'pipenv run pytest dockertidy --cov=dockertidy --no-cov-on-fail',
'pipenv run pytest dockertidy --cov=dockertidy --cov-append --no-cov-on-fail',
'pip install -qq .',
'docker-tidy --help',
'docker-tidy --version',
Expand Down
10 changes: 5 additions & 5 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ steps:
commands:
- pip install pipenv -qq
- pipenv --bare install --dev --keep-outdated
- pipenv run pytest dockertidy --cov=dockertidy --no-cov-on-fail
- pipenv run pytest dockertidy --cov=dockertidy --cov-append --no-cov-on-fail
- pip install -qq .
- docker-tidy --help
- docker-tidy --version
Expand All @@ -79,7 +79,7 @@ steps:
commands:
- pip install pipenv -qq
- pipenv --bare install --dev --keep-outdated
- pipenv run pytest dockertidy --cov=dockertidy --no-cov-on-fail
- pipenv run pytest dockertidy --cov=dockertidy --cov-append --no-cov-on-fail
- pip install -qq .
- docker-tidy --help
- docker-tidy --version
Expand All @@ -94,7 +94,7 @@ steps:
commands:
- pip install pipenv -qq
- pipenv --bare install --dev --keep-outdated
- pipenv run pytest dockertidy --cov=dockertidy --no-cov-on-fail
- pipenv run pytest dockertidy --cov=dockertidy --cov-append --no-cov-on-fail
- pip install -qq .
- docker-tidy --help
- docker-tidy --version
Expand All @@ -109,7 +109,7 @@ steps:
commands:
- pip install pipenv -qq
- pipenv --bare install --dev --keep-outdated
- pipenv run pytest dockertidy --cov=dockertidy --no-cov-on-fail
- pipenv run pytest dockertidy --cov=dockertidy --cov-append --no-cov-on-fail
- pip install -qq .
- docker-tidy --help
- docker-tidy --version
Expand Down Expand Up @@ -543,6 +543,6 @@ depends_on:

---
kind: signature
hmac: 5d012501ff3c2722e59f68d7c2ba24369ef32806f3176492a90073f2df12a1fe
hmac: 3a5eed826fd837d9c63d46c8f9a14263ddd0d791f110b32a8dec464a83062e20

...
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
* ENHANCEMENT
* update dependencies
* INTERNAL
* add markdown linting to CI (markdownlint-cli)
* add spellchecking to CI (spellcheck-cli)
* add broken link check to CI (broken-link-checker)

0 comments on commit 04d9b92

Please sign in to comment.