mirror of
https://github.com/fluencelabs/registry.git
synced 2025-04-24 17:52:14 +00:00
* feat(tests): Run tests using fluence cli [DXJ-225] * fix: remove .fluence from .gitignore * Update example/fluence.yaml Co-authored-by: Aleksey Proshutisnkiy <justprosh@users.noreply.github.com> * fix: update tests * fix: fix tests * fix: set default key * chore: update aqua to 0.9.2 in fluence.yml of aqua-tests Co-authored-by: Aleksey Proshutisnkiy <justprosh@users.noreply.github.com> Co-authored-by: folex <0xdxdy@gmail.com> Co-authored-by: shamsartem
8 lines
170 B
Python
8 lines
170 B
Python
import delegator
|
|
|
|
|
|
def test_fluence_cli_version():
|
|
c = delegator.run(f"npx fluence --version", block=True)
|
|
print(f"Fluence CLI version: {c.out}")
|
|
assert True
|