Skip to content

Commit 5ed8175

Browse files
author
Takashi Matsuo
committed
lint fix
1 parent 9b153a5 commit 5ed8175

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

noxfile.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def system(session):
7474
"""Run the system test suite."""
7575

7676
# Check the value of `RUN_SYSTEM_TESTS` env var. It defaults to true.
77-
if os.environ.get("RUN_SYSTEM_TESTS", "true") == 'false':
77+
if os.environ.get("RUN_SYSTEM_TESTS", "true") == "false":
7878
session.skip("RUN_SYSTEM_TESTS is set to false, skipping")
7979

8080
# Sanity check: Only run system tests if the environment variable is set.
@@ -195,6 +195,7 @@ def docs(session):
195195
os.path.join("docs", "_build", "html", ""),
196196
)
197197

198+
198199
@nox.session(python="3.8")
199200
def docfx(session):
200201
"""Build the docfx yaml files for this library."""

0 commit comments

Comments
 (0)