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 aea3f56 commit 87b0d71Copy full SHA for 87b0d71
noxfile.py
@@ -41,6 +41,23 @@
41
# Error if a python version is missing
42
nox.options.error_on_missing_interpreters = True
43
44
+# pypy will be run as a github action instead of through Kokoro
45
+nox.options.sessions = [
46
+ "lint",
47
+ "blacken",
48
+ "mypy",
49
+ # TODO(https://github.com/googleapis/python-storage/issues/1499):
50
+ # Remove or restore testing for Python 3.7/3.8
51
+ "unit-3.9",
52
+ "unit-3.10",
53
+ "unit-3.11",
54
+ "unit-3.12",
55
+ "unit-3.13",
56
+ # cover must be last to avoid error `No data to report`
57
+ "cover",
58
+ "docs",
59
+]
60
+
61
62
@nox.session(python=DEFAULT_PYTHON_VERSION)
63
def lint(session):
0 commit comments