Skip to content

Commit 80fefa4

Browse files
authored
release: v0.0.3 (#6)
* test: skip download proxy test on CI * test: skip download proxy test on CI * test: skip download proxy test on CI
1 parent 1ad50b0 commit 80fefa4

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ build:
1515

1616
.PHONY: vs
1717
vs:
18-
rm -f encoded.mkv
18+
rm -f encoded.mp4
1919
vspipe -c y4m example/sr_vs.py - | ffmpeg -i - -vcodec libx264 encoded.mp4
2020

2121
.PHONY: dev

cccv/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
SOFTWARE.
2323
"""
2424

25-
__version__ = "0.0.2"
25+
__version__ = "0.0.3"
2626

2727
from cccv.arch import ARCH_REGISTRY
2828
from cccv.auto import AutoConfig, AutoModel

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ license = "MIT"
4242
name = "cccv"
4343
readme = "README.md"
4444
requires-python = ">=3.9, <4"
45-
version = "0.0.2"
45+
version = "0.0.3"
4646

4747
[project.urls]
4848
Homepage = "https://github.com/EutropicAI/cccv"

tests/test_remote.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1+
import pytest
2+
13
from cccv import CONFIG_REGISTRY, ConfigType
24
from cccv.util.remote import get_cache_dir, git_clone, load_file_from_url
5+
from tests.util import CI_ENV
36

47

58
def test_cache_models() -> None:
69
load_file_from_url(CONFIG_REGISTRY.get(ConfigType.RealESRGAN_AnimeJaNai_HD_V3_Compact_2x))
710

811

12+
@pytest.mark.skipif(CI_ENV, reason="Skip test on CI environment to save the provider's bandwidth")
913
def test_cache_models_with_gh_proxy() -> None:
1014
load_file_from_url(
1115
config=CONFIG_REGISTRY.get(ConfigType.RealESRGAN_AnimeJaNai_HD_V3_Compact_2x),

0 commit comments

Comments
 (0)