Skip to content

Commit

Permalink
chore(python): echo commands in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rasendubi committed Aug 28, 2024
1 parent 1ba35f3 commit 4d098a2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
if: ${{ startsWith(matrix.platform.target, 'x86_64') }}
shell: bash
run: |
set -e
set -ex
python3 -m venv .venv
source .venv/bin/activate
pip install eppo-server-sdk --find-links dist --force-reinstall
Expand All @@ -84,7 +84,7 @@ jobs:
apt-get install -y --no-install-recommends python3 python3-pip nodejs
pip3 install -U pip pytest
run: |
set -e
set -ex
pip3 install eppo-server-sdk --find-links dist --force-reinstall
npm ci
npm run with-server test:python
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
image: alpine:latest
options: -v ${{ github.workspace }}:/io -w /io
run: |
set -e
set -ex
apk add py3-pip py3-virtualenv nodejs npm
python3 -m virtualenv .venv
source .venv/bin/activate
Expand All @@ -146,7 +146,7 @@ jobs:
install: |
apk add py3-virtualenv nodejs npm
run: |
set -e
set -ex
python3 -m virtualenv .venv
source .venv/bin/activate
pip install pytest
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
if: ${{ !startsWith(matrix.platform.target, 'aarch64') }}
shell: bash
run: |
set -e
set -ex
python3 -m venv .venv
source .venv/Scripts/activate
pip install eppo-server-sdk --find-links dist --force-reinstall
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
path: dist
- name: pytest
run: |
set -e
set -ex
python3 -m venv .venv
source .venv/bin/activate
pip install eppo-server-sdk --find-links dist --force-reinstall
Expand Down

0 comments on commit 4d098a2

Please sign in to comment.