mirror of
https://github.com/fluencelabs/registry.git
synced 2025-04-24 09:42:14 +00:00
* feat: use non-npm Fluence CLI * Replace nox version * Setup fcli in cargo tests * Fix * remove npx --------- Co-authored-by: Anatoly Laskaris <github_me@nahsi.dev>
8 lines
166 B
Python
8 lines
166 B
Python
import delegator
|
|
|
|
|
|
def test_fluence_cli_version():
|
|
c = delegator.run(f"fluence --version", block=True)
|
|
print(f"Fluence CLI version: {c.out}")
|
|
assert True
|