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 0747b83 commit 3b31033Copy full SHA for 3b31033
noxfile.py
@@ -27,7 +27,7 @@ def install(session):
27
28
@nox.session(python=False)
29
def smoke(session):
30
- session.install(*"pytest aiohttp requests".split())
+ session.install(*"pytest aiohttp requests gcsfs".split())
31
session.run(*"pytest --skiphdfs upath".split())
32
33
upath/core.py
@@ -273,6 +273,9 @@ def is_file(self):
273
return True
274
return False
275
276
+ def chmod(self, mod):
277
+ raise NotImplementedError
278
+
279
def rename(self, target):
280
# can be implemented, but may be tricky
281
raise NotImplementedError
0 commit comments