Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: use comfyui 16eabdf7 #244

Merged
merged 2 commits into from
Apr 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hordelib/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from hordelib.config_path import get_hordelib_path

COMFYUI_VERSION = "a7dd82e668bfaf7fac365a4e73a1ba1acf224fbb"
COMFYUI_VERSION = "16eabdf70dbdb64dc4822908f0fe455c56d11ec3"
"""The exact version of ComfyUI version to load."""

REMOTE_PROXY = ""
Expand Down
4 changes: 4 additions & 0 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import pytest

from hordelib.settings import UserSettings
from hordelib.utils.distance import (
CosineSimilarityResultCode,
Expand All @@ -20,6 +22,7 @@ def test_worker_settings_percent_check():
assert UserSettings._is_percentage("%50") is False


@pytest.mark.skip(reason="This refers to code that is not currently used in production.")
class TestWorkerSettingsWithInit:
def test_worker_settings_properties_comparable(self, init_horde):
assert UserSettings.get_ram_to_leave_free_mb() > 0
Expand Down Expand Up @@ -49,6 +52,7 @@ def test_result_codes_in_order(self):
last_value = result_code


@pytest.mark.skip(reason="This refers to code that is not currently used in production.")
class TestGPUInfo:
def test_gpuinfo_init(self):
gpu = GPUInfo()
Expand Down
Loading