chore(ci): print aqua version before tests (#137)

This commit is contained in:
Aleksey Proshutisnkiy 2022-10-12 16:06:34 +04:00 committed by GitHub
parent 0577180737
commit 011b297408
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 2 deletions

View File

@ -3,7 +3,7 @@ name: "publish-release"
on:
push:
tags:
- "*"
- "v*"
jobs:
npm-publish:

View File

@ -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

View 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