Skip to content

Commit 5f740ed

Browse files
author
Pamparampam
committed
typo...
1 parent fe92708 commit 5f740ed

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/run-all-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ jobs:
2424
2525
- name: Run all tests
2626
run: |
27-
pytest --maxfail=1 --disable-warnings -v
27+
pytest --disable-warnings -v

.github/workflows/run-fast-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
2929
- name: Run fast tests only
3030
run: |
31-
pytest -m "not slow" --maxfail=1 --disable-warnings -v
31+
pytest -m "not slow" --disable-warnings -v

tests/test_zipfly.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ def test_modification_time(tmp_path, file_cls):
592592

593593

594594
def test_EmptyFolder_creates_empty_directory(tmp_path):
595-
folder_name = ""
595+
folder_name = "empty_folder"
596596
empty_folder = EmptyFolder(name=folder_name)
597597
zip_fly = ZipFly([empty_folder])
598598

0 commit comments

Comments
 (0)