Skip to content

Commit

Permalink
insert print sentence
Browse files Browse the repository at this point in the history
  • Loading branch information
suecharo committed Jul 12, 2024
1 parent a90d52f commit 285e290
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,17 @@ jobs:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}

- name: Install Python Dependencies
- name: echo pip list
run: |
python3 -m pip install --progress-bar off -U pip
python3 -m pip install --progress-bar off -U .[tests]
python3 -m pip list
- name: env
run: |
env
- name: Run mod
run: |
python3 -c "from sapporo.dump_outputs_list import dump_outputs_list; print(id(dump_outputs_list))"
- name: Run pytest
run: |
Expand Down
18 changes: 18 additions & 0 deletions sapporo/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,24 @@ function run_wf() {
executor_error
fi

echo "In run.sh"

echo "=== env ========"

env

echo "=== pip list ========"

python3 -m pip list

echo "=== which ========"

which python3

echo "=== exec module ========"

python3 -c "from sapporo.run import dump_outputs_list; print(id(dump_outputs_list))"

upload
date -u +"%Y-%m-%dT%H:%M:%S" >${end_time}
echo 0 >${exit_code}
Expand Down

0 comments on commit 285e290

Please sign in to comment.