Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e642e6f

Browse filesBrowse files
committed
chore: blacken noxfile
1 parent 8fd4e45 commit e642e6f
Copy full SHA for e642e6f

File tree

Expand file treeCollapse file tree

1 file changed

+12
-3
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+12
-3
lines changed

‎noxfile.py

Copy file name to clipboardExpand all lines: noxfile.py
+12-3Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828

2929
def _greater_or_equal_than_36(version_string):
30-
tokens = version_string.split('.')
30+
tokens = version_string.split(".")
3131
for i, token in enumerate(tokens):
3232
try:
3333
tokens[i] = int(token)
@@ -50,8 +50,17 @@ def default(session):
5050
session.install("pip==20.2") # for 2020 resolver
5151

5252
# Install all test dependencies, then install this package in-place.
53-
session.install("--use-feature=2020-resolver", "mock", "pytest", "pytest-cov", "-c", constraints_path)
54-
session.install("--use-feature=2020-resolver", "-e", ".[grpc]", "-c", constraints_path)
53+
session.install(
54+
"--use-feature=2020-resolver",
55+
"mock",
56+
"pytest",
57+
"pytest-cov",
58+
"-c",
59+
constraints_path,
60+
)
61+
session.install(
62+
"--use-feature=2020-resolver", "-e", ".[grpc]", "-c", constraints_path
63+
)
5564

5665
pytest_args = [
5766
"python",

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.