Skip to content

Commit 004bf6a

Browse files
Print package dir
1 parent 83c8dfb commit 004bf6a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/test_building_multiple_executables.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,13 @@ jobs:
1414
# Note: pip>=20.3 is needed to install dependencies of cysecuretools
1515
run: |
1616
python3 -m pip install --upgrade pip
17-
python3 -m pip install -e ./tools
1817
1918
# Remove mbed-tools package that comes with the docker image, it conflicts with the one we want to install
2019
python3 -m pip uninstall -y mbed-tools
20+
21+
python3 -m pip install -e ./tools
22+
23+
python -c "import os, site; print(os.path.join(site.USER_BASE, 'Scripts' if os.name == 'nt' else 'bin'))
2124
2225
# Note: For this CI job we use MBED_CREATE_PYTHON_VENV=FALSE so that we can make sure
2326
# this mode works.

0 commit comments

Comments
 (0)