We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bfaf41 commit f4de704Copy full SHA for f4de704
.github/workflows/docat.yml
@@ -38,7 +38,7 @@ jobs:
38
- name: run backend tests
39
working-directory: docat
40
run: |
41
- python -m poetry run pytest
+ python -m poetry run pytest -vvv -s
42
43
javascript-test:
44
runs-on: ubuntu-latest
docat/docat/utils.py
@@ -156,6 +156,8 @@ def readable_size(bytes: int) -> str:
156
157
158
def directory_size(path: Path) -> int:
159
+ print([str(file) for file in path.rglob("*")])
160
+
161
return sum(file.stat().st_size for file in path.rglob("*"))
162
163
0 commit comments