Skip to content

Commit

Permalink
Refs #20827: Fix win32con
Browse files Browse the repository at this point in the history
Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com>
  • Loading branch information
Mario-DL committed May 3, 2024
1 parent d2092a7 commit 87d87e1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/reusable-windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,18 @@ jobs:
- name: Install Python dependencies
uses: eProsima/eProsima-CI/windows/install_python_packages@hotfix/python
with:
packages: vcstool xmlschema
packages: vcstool xmlschema pywin32

- name: Check python installed dependencies
run: |
python3 -m pip list
echo $?
python3 -m pip show pywin32
echo $?
python3 -c "import sys; print(sys.path)"
echo $?
python3 -c "import win32con"
echo $?
- name: Update known hosts file for DNS resolver testing
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-test') }}
Expand Down
3 changes: 3 additions & 0 deletions tools/fastdds/shm/clean.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
import platform
import re
from pathlib import Path
import sys

print (sys.path)

if os.name == 'posix':
import fcntl
Expand Down

0 comments on commit 87d87e1

Please sign in to comment.