Skip to content

Commit 83c0691

Browse files
author
Martin Durant
committed
Merge branch 'master' into cacheing
2 parents 811403d + a4ce00d commit 83c0691

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ install:
3535
- conda create -n test -c conda-forge python=$TRAVIS_PYTHON_VERSION pip
3636
- source activate test
3737
- conda install requests pytest paramiko pyftpdlib cloudpickle pyarrow -y -c defaults -c conda-forge
38-
- pip install git+https://github.com/jcrist/hadoop-test-cluster.git
38+
- pip install hadoop-test-cluster==0.1.0
3939

4040
script:
4141
- py.test -v --pyargs fsspec

fsspec/implementations/tests/test_local.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,9 @@ def test_open_files_text_mode(encoding):
150150
@pytest.mark.parametrize('mode', ['rt', 'rb'])
151151
@pytest.mark.parametrize('fmt', list(compression.compr))
152152
def test_compressions(fmt, mode, tmpdir):
153+
if fmt == 'zip':
154+
# zip implemented read-only
155+
pytest.skip()
153156
fn = os.path.join(tmpdir, '.tmp.getsize')
154157
fs = LocalFileSystem()
155158
f = OpenFile(fs, fn, compression=fmt, mode='wb')

0 commit comments

Comments
 (0)