fix hound

This commit is contained in:
Ondrej Samohel 2021-11-09 09:31:54 +01:00
parent 25e912aedc
commit 2ff9ca21aa
No known key found for this signature in database
GPG key ID: 02376E18990A97C6
3 changed files with 2 additions and 5 deletions

View file

@ -24,7 +24,8 @@ class OpenPypeContextSelector:
self.openpype_executable = "openpype_gui"
if platform.system().lower() == "windows":
op_exec = "{}.exe".format(self.openpype_executable)
self.openpype_executable = "{}.exe".format(
self.openpype_executable)
op_path = os.environ.get("OPENPYPE_ROOT")
print("initializing ... {}".format(op_path))

View file

@ -360,6 +360,3 @@ class PypeCommands:
cmd = "pytest {} {} {}".format(folder, mark_str, pyargs_str)
print("Running {}".format(cmd))
subprocess.run(cmd)
def show_context_selector(self):
...

View file

@ -8,4 +8,3 @@ def test_rr_job():
# manager = ModulesManager()
# rr_module = manager.modules_by_name["royalrender"]
...