mirror of
https://github.com/Mic92/nix-update.git
synced 2024-11-03 21:04:49 +03:00
fix composer test
This commit is contained in:
parent
a42ae67d87
commit
a6ceab8b36
@ -4,11 +4,18 @@ import conftest
|
||||
|
||||
from nix_update.options import Options
|
||||
from nix_update.update import update
|
||||
from nix_update.version.version import VersionPreference
|
||||
|
||||
|
||||
def test_update(helpers: conftest.Helpers) -> None:
|
||||
with helpers.testpkgs() as path:
|
||||
opts = Options(attribute="composer", import_path=str(path))
|
||||
opts = Options(
|
||||
attribute="composer",
|
||||
import_path=str(path),
|
||||
# For 0.14.0 we get inconsistent lock file errors
|
||||
version="0.13.1",
|
||||
version_preference=VersionPreference.FIXED,
|
||||
)
|
||||
update(opts)
|
||||
version = subprocess.run(
|
||||
[
|
||||
|
Loading…
Reference in New Issue
Block a user