Skip to content

Commit 3f69cb7

Browse files
test removing crypto
1 parent 3a7903d commit 3f69cb7

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/test-crypt.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,16 @@ jobs:
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131

32+
- name: Inspect crypt files in the installed Python
33+
run: |
34+
PYLIB="$pythonLocation/lib/python${{ matrix.python-version }}"
35+
echo "--- crypt.py ---"
36+
ls -la "${PYLIB%.*}"/crypt.py 2>&1 || echo "crypt.py NOT found"
37+
echo "--- _crypt*.so ---"
38+
find "$pythonLocation" -name "_crypt*.so" 2>&1 || echo "_crypt.so NOT found"
39+
echo "--- module location ---"
40+
python3 -c "import crypt; print(crypt.__file__)"
41+
python3 -c "import _crypt; print(_crypt.__file__)"
3242
- name: Check Python version
3343
run: python3 --version
3444

0 commit comments

Comments
 (0)