2.1.2 (#271)
* Fix round issues on CLI arguments with range * Refresh face references on frame processor change * Add cuda 12 support to installer * Add cuda 12 support to installer * Add cuda 12 support to installer * Add cuda 12 support to installer * Simplify check * Simplify check
This commit is contained in:
10
tests/test_common_helper.py
Normal file
10
tests/test_common_helper.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from facefusion.common_helper import create_metavar, create_range
|
||||
|
||||
|
||||
def test_create_metavar() -> None:
|
||||
assert create_metavar([ 1, 2, 3, 4, 5 ]) == '[1-5]'
|
||||
|
||||
|
||||
def test_create_range() -> None:
|
||||
assert create_range(0.0, 1.0, 0.5) == [ 0.0, 0.5, 1.0 ]
|
||||
assert create_range(0.0, 0.2, 0.05) == [ 0.0, 0.05, 0.10, 0.15, 0.20 ]
|
||||
Reference in New Issue
Block a user