Skip to content
This repository was archived by the owner on Oct 25, 2021. It is now read-only.

Commit 802ab2e

Browse files
committed
fix scripts
1 parent e656429 commit 802ab2e

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

bin/codestyle/check_codestyle.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ while getopts ":s" flag; do
1212
esac
1313
done
1414

15-
echo 'isort: `isort -rc --check-only --settings-path ./setup.cfg`'
15+
echo 'isort -rc --check-only --settings-path ./setup.cfg'
1616
isort -rc --check-only --settings-path ./setup.cfg
1717

1818
# stop the build if there are any unexpected flake8 issues
19-
echo 'flake8: `bash ./bin/_flake8.sh`'
20-
bash ./bin/_flake8.sh --count \
19+
echo 'bash ./bin/codestyle/flake8.sh'
20+
bash ./bin/codestyle/flake8.sh --count \
2121
--config=./setup.cfg \
2222
--show-source \
2323
--statistics
2424

2525
# exit-zero treats all errors as warnings.
26-
echo 'flake8 (warnings): `flake8 .`'
27-
flake8 ./bin/_flake8.sh --count \
26+
echo 'flake8'
27+
flake8 ./bin/codestyle/flake8.sh --count \
2828
--config=./setup.cfg \
2929
--max-complexity=10 \
3030
--show-source \
@@ -33,9 +33,9 @@ flake8 ./bin/_flake8.sh --count \
3333

3434
# test to make sure the code is yapf compliant
3535
if [[ -f ${skip_inplace} ]]; then
36-
echo 'yapf: `bash ./bin/_yapf.sh --all`'
37-
bash ./bin/_yapf.sh --all
36+
echo 'bash ./bin/codestyle/yapf.sh --all'
37+
bash ./bin/codestyle/yapf.sh --all
3838
else
39-
echo 'yapf: `bash ./bin/_yapf.sh --all-in-place`'
40-
bash ./bin/_yapf.sh --all-in-place
39+
echo 'bash ./bin/codestyle/yapf.sh --all-in-place'
40+
bash ./bin/codestyle/yapf.sh --all-in-place
4141
fi

teamcity/binary.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ set -eo pipefail -v
55

66
pip install -r requirements/requirements.txt
77

8-
bash ./bin/tests/_check_binary.sh
8+
bash ./bin/tests/check_binary.sh

teamcity/instance.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ set -eo pipefail -v
55

66
pip install -r requirements/requirements.txt
77

8-
bash ./bin/tests/_check_instance.sh
8+
bash ./bin/tests/check_instance.sh

teamcity/semantic.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ set -eo pipefail -v
55

66
pip install -r requirements/requirements.txt
77

8-
bash ./bin/tests/_check_semantic.sh
8+
bash ./bin/tests/check_semantic.sh

0 commit comments

Comments
 (0)