We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d1c5d0 commit c0c2ffbCopy full SHA for c0c2ffb
tests/fake-ftp-files.txt
@@ -1,3 +1,4 @@
1
+# Test data only, doesn't need to be updated for each release
2
Python-3.14.0a1.tar.xz
3
Python-3.14.0a1.tar.xz.crt
4
Python-3.14.0a1.tar.xz.sig
tests/test_add_to_pydotorg.py
@@ -86,6 +86,9 @@ def test_list_files(fs: FakeFilesystem) -> None:
86
fs.add_real_file("tests/fake-ftp-files.txt")
87
fake_files = Path("tests/fake-ftp-files.txt").read_text().splitlines()
88
for fn in fake_files:
89
+ if fn.startswith("#"): # comment
90
+ continue
91
+
92
file_path = Path(add_to_pydotorg.ftp_root) / "3.14.0" / fn
93
if fn.endswith("/"):
94
fs.create_dir(file_path)
0 commit comments