Skip to content

Commit 937a589

Browse files
committed
Revert temp changes
1 parent 0950540 commit 937a589

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
shell: bash -l {0}
4141
run: |
4242
pip install -e .[test_full]
43-
pytest -v fsspec/tests/test_spec.py
43+
pytest -v
4444
4545
win:
4646
name: pytest-win

fsspec/tests/test_spec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,10 +752,10 @@ def test_cache_not_pickled(server):
752752
cache_type="readahead",
753753
headers={"give_length": "true", "head_ok": "true"},
754754
)
755-
# fs = fsspec.filesystem("readahead", target_protocol="http")
756755
filepath = server.realfile
757756
length = 3
758757
f = fs.open(filepath, mode="rb")
758+
assert isinstance(f, AbstractBufferedFile)
759759
assert not f.cache.cache # No cache initially
760760
assert f.read(length=length) == data[:length]
761761
assert f.cache.cache == data # Cache is populated

0 commit comments

Comments
 (0)