mirror of
https://github.com/fluencelabs/registry.git
synced 2025-04-24 17:52:14 +00:00
chore(ci): print aqua version before tests (#137)
This commit is contained in:
parent
0577180737
commit
011b297408
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -3,7 +3,7 @@ name: "publish-release"
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "*"
|
||||
- "v*"
|
||||
|
||||
jobs:
|
||||
npm-publish:
|
||||
|
6
.github/workflows/tests.yml
vendored
6
.github/workflows/tests.yml
vendored
@ -134,8 +134,12 @@ jobs:
|
||||
- name: Wait for registry to be deployed
|
||||
run: sleep 40
|
||||
|
||||
- name: Print aqua version
|
||||
run: pytest -s test_aqua_version.py
|
||||
working-directory: aqua-tests
|
||||
|
||||
- name: Run aqua tests
|
||||
run: pytest -n auto
|
||||
run: pytest -n auto test_aqua.py
|
||||
working-directory: aqua-tests
|
||||
|
||||
- name: Dump rust-peer logs on failure
|
||||
|
7
aqua-tests/test_aqua_version.py
Normal file
7
aqua-tests/test_aqua_version.py
Normal file
@ -0,0 +1,7 @@
|
||||
import delegator
|
||||
|
||||
|
||||
def test_aqua_version():
|
||||
c = delegator.run(f"npx aqua --version", block=True)
|
||||
print(f"Aqua version: {c.out}")
|
||||
assert True
|
Loading…
x
Reference in New Issue
Block a user