Skip to content

Commit 91f6331

Browse files
committed
missing header
Signed-off-by: Petra Hapalova <phapalova@nvidia.com>
1 parent f9516e5 commit 91f6331

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

pytests/test_fvdb_viz_integration.py

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright Contributors to the OpenVDB Project
2+
# SPDX-License-Identifier: Apache-2.0
3+
14
import os
25
import subprocess
36
import sys
@@ -11,10 +14,7 @@
1114

1215
pytestmark = pytest.mark.skipif(
1316
not RUNS_ON_FVDB_VIZ_ENV,
14-
reason=(
15-
"Set FVDB_VIZ_TESTS=1 to enable fvdb.viz integration checks "
16-
"(runs in CI Docker)."
17-
),
17+
reason=("Set FVDB_VIZ_TESTS=1 to enable fvdb.viz integration checks " "(runs in CI Docker)."),
1818
)
1919

2020
TORCH_VERSION = os.environ.get("FVDB_VIZ_TORCH_VERSION", "2.8.0")
@@ -184,10 +184,7 @@ def _run_notebook_script(env_ctx: dict, expect_success: bool):
184184
check=False,
185185
)
186186
if expect_success and proc.returncode != 0:
187-
raise AssertionError(
188-
"Viewer smoke test failed:\\n"
189-
f"STDOUT:\\n{proc.stdout}\\nSTDERR:\\n{proc.stderr}"
190-
)
187+
raise AssertionError("Viewer smoke test failed:\\n" f"STDOUT:\\n{proc.stdout}\\nSTDERR:\\n{proc.stderr}")
191188
if not expect_success and proc.returncode == 0:
192189
raise AssertionError(
193190
"nanovdb-editor-dev unexpectedly succeeded; "

0 commit comments

Comments
 (0)