1 parent 3a7903d commit 3f69cb7Copy full SHA for 3f69cb7
1 file changed
.github/workflows/test-crypt.yml
@@ -29,6 +29,16 @@ jobs:
29
with:
30
python-version: ${{ matrix.python-version }}
31
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__)"
42
- name: Check Python version
43
run: python3 --version
44
0 commit comments