We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b461e8b commit f04cce8Copy full SHA for f04cce8
2 files changed
.github/workflows/python.yml
@@ -20,6 +20,14 @@ jobs:
20
- uses: actions/checkout@v6
21
with:
22
fetch-depth: 0
23
+ - if: matrix.os != 'windows-latest'
24
+ run: |
25
+ set -Eexo pipefail
26
+ ls -lah .
27
+ ls -lah .git
28
+ echo "${GIT_DIR}"
29
+ echo "${GIT_WORK_TREE}"
30
+ echo "${GIT_COMMON_DIR}"
31
- uses: actions/setup-python@v6
32
33
python-version: ${{ matrix.python-version }}
test/examples.py
@@ -11,7 +11,7 @@
11
12
_GIT_REPOS_ROOT = pathlib.Path(os.environ.get('EXAMPLE_PROJECTS_PATH', '..')).resolve()
13
14
-GIT_REPO_EXAMPLES = list(_ for _ in _GIT_REPOS_ROOT.glob('**/.git') if _.is_dir())
+GIT_REPO_EXAMPLES = list(_.parent for _ in _GIT_REPOS_ROOT.glob('**/.git') if _.is_dir())
15
16
17
def python_lib_dir() -> pathlib.Path:
0 commit comments