Skip to content

Commit

Permalink
Fixed all CICO scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
tisnik committed Sep 6, 2019
1 parent 9810f28 commit 4bf5a75
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cico_build_deploy.sh
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ set -ex

build_image

./runtests.sh
./qa/runtests.sh

push_image

2 changes: 1 addition & 1 deletion cico_run_pydoc.sh
Original file line number Diff line number Diff line change
@@ -14,4 +14,4 @@ check_python_version() {

prep
check_python_version
./check-docstyle.sh
./qa/check-docstyle.sh
10 changes: 5 additions & 5 deletions cico_run_pylint.sh
Original file line number Diff line number Diff line change
@@ -17,8 +17,8 @@ rm -f env-toolkit

prep
check_python_version
./detect-common-errors.sh
./detect-dead-code.sh
./measure-cyclomatic-complexity.sh --fail-on-error
./measure-maintainability-index.sh --fail-on-error
./run-linter.sh
./qa/detect-common-errors.sh
./qa/detect-dead-code.sh
./qa/measure-cyclomatic-complexity.sh --fail-on-error
./qa/measure-maintainability-index.sh --fail-on-error
./qa/run-linter.sh
2 changes: 1 addition & 1 deletion cico_run_tests.sh
Original file line number Diff line number Diff line change
@@ -8,5 +8,5 @@ set -ex
build_image
push_image

./runtests.sh
./qa/runtests.sh

0 comments on commit 4bf5a75

Please sign in to comment.