Use one-line commands on CircleCI to ensure that command output is shown

This commit is contained in:
Thomas Robitaille
2019-09-07 21:55:42 +01:00
parent ab86b8cd93
commit d8456a0ffa
+8 -16
View File
@@ -11,12 +11,10 @@ jobs:
- run: - run:
name: Prepare the environment. name: Prepare the environment.
command: | command: bash .circleci/prepare.sh
bash .circleci/prepare.sh
- run: - run:
name: Test. name: Test.
command: | command: venv/bin/python ./bin/run_tests.py
venv/bin/python ./bin/run_tests.py
osx-python3: osx-python3:
macos: macos:
@@ -28,12 +26,10 @@ jobs:
- run: - run:
name: Prepare the environment. name: Prepare the environment.
command: | command: bash .circleci/prepare.sh
bash .circleci/prepare.sh
- run: - run:
name: Test. name: Test.
command: | command: venv/bin/python ./bin/run_tests.py
venv/bin/python ./bin/run_tests.py
linux-python2: linux-python2:
docker: docker:
@@ -46,12 +42,10 @@ jobs:
- run: - run:
name: Prepare the environment. name: Prepare the environment.
command: | command: bash .circleci/prepare.sh
bash .circleci/prepare.sh
- run: - run:
name: Test. name: Test.
command: | command: venv/bin/python ./bin/run_tests.py
venv/bin/python ./bin/run_tests.py
linux-python3: linux-python3:
docker: docker:
@@ -64,12 +58,10 @@ jobs:
- run: - run:
name: Prepare the environment. name: Prepare the environment.
command: | command: bash .circleci/prepare.sh
bash .circleci/prepare.sh
- run: - run:
name: Test. name: Test.
command: | command: venv/bin/python ./bin/run_tests.py
venv/bin/python ./bin/run_tests.py
workflows: workflows:
version: 2 version: 2