File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1515
1616.PHONY : vs
1717vs :
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
Original file line number Diff line number Diff line change 2222SOFTWARE.
2323"""
2424
25- __version__ = "0.0.2 "
25+ __version__ = "0.0.3 "
2626
2727from cccv .arch import ARCH_REGISTRY
2828from cccv .auto import AutoConfig , AutoModel
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ license = "MIT"
4242name = " cccv"
4343readme = " README.md"
4444requires-python = " >=3.9, <4"
45- version = " 0.0.2 "
45+ version = " 0.0.3 "
4646
4747[project .urls ]
4848Homepage = " https://github.com/EutropicAI/cccv"
Original file line number Diff line number Diff line change 1+ import pytest
2+
13from cccv import CONFIG_REGISTRY , ConfigType
24from cccv .util .remote import get_cache_dir , git_clone , load_file_from_url
5+ from tests .util import CI_ENV
36
47
58def 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" )
913def test_cache_models_with_gh_proxy () -> None :
1014 load_file_from_url (
1115 config = CONFIG_REGISTRY .get (ConfigType .RealESRGAN_AnimeJaNai_HD_V3_Compact_2x ),
You can’t perform that action at this time.
0 commit comments