mirror of
https://github.com/sabnzbd/sabnzbd.git
synced 2025-12-24 00:00:12 -05:00
Update all dependencies (develop) (#3238)
* Update all dependencies * Compare fakefs result after sorting --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Safihre <safihre@sabnzbd.org>
This commit is contained in:
2
.github/workflows/translations.yml
vendored
2
.github/workflows/translations.yml
vendored
@@ -30,7 +30,7 @@ jobs:
|
||||
run: |
|
||||
python3 tools/make_mo.py
|
||||
- name: Push translatable and translated texts back to repo
|
||||
uses: stefanzweifel/git-auto-commit-action@v7.0.0
|
||||
uses: stefanzweifel/git-auto-commit-action@v7.1.0
|
||||
if: env.TX_TOKEN
|
||||
with:
|
||||
commit_message: |
|
||||
|
||||
@@ -10,7 +10,7 @@ configobj==5.0.9
|
||||
cheroot==11.1.2
|
||||
six==1.17.0
|
||||
cherrypy==18.10.0
|
||||
jaraco.functools==4.3.0
|
||||
jaraco.functools==4.4.0
|
||||
jaraco.collections==5.0.0
|
||||
jaraco.text==3.8.1 # Newer version introduces irrelevant extra dependencies
|
||||
jaraco.classes==3.4.0
|
||||
|
||||
@@ -663,7 +663,7 @@ class TestListdirFull(ffs.TestCase):
|
||||
):
|
||||
self.fs.create_file(file)
|
||||
assert os.path.exists(file) is True
|
||||
assert filesystem.listdir_full("/rsc") == ["/rsc/base_file", "/rsc/not._base_file"]
|
||||
assert sorted(filesystem.listdir_full("/rsc")) == ["/rsc/base_file", "/rsc/not._base_file"]
|
||||
|
||||
def test_invalid_file_argument(self):
|
||||
# This is obviously not intended use; the function expects a directory
|
||||
@@ -750,7 +750,7 @@ class TestListdirFullWin(ffs.TestCase):
|
||||
):
|
||||
self.fs.create_file(file)
|
||||
assert os.path.exists(file) is True
|
||||
assert filesystem.listdir_full(r"f:\rsc") == [r"f:\rsc\base_file", r"f:\rsc\not._base_file"]
|
||||
assert sorted(filesystem.listdir_full(r"f:\rsc")) == [r"f:\rsc\base_file", r"f:\rsc\not._base_file"]
|
||||
|
||||
def test_invalid_file_argument(self):
|
||||
# This is obviously not intended use; the function expects a directory
|
||||
|
||||
Reference in New Issue
Block a user