From 2687fd4ade1527cfd4abe343627755420cafb1a1 Mon Sep 17 00:00:00 2001 From: Martin Milata Date: Tue, 14 Sep 2021 13:32:04 +0200 Subject: [PATCH] ci: hw: don't skip memory-intensive tests --- ci/test-hw.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ci/test-hw.yml b/ci/test-hw.yml index 2f8bcf2c8..ec1925959 100644 --- a/ci/test-hw.yml +++ b/ci/test-hw.yml @@ -21,7 +21,6 @@ hardware core regular device test: - core fw regular debug build variables: PYTEST_TIMEOUT: "1200" - TESTS_SKIP: "-k 'not 15_of_15'" script: - cd ci/hardware_tests - set -a @@ -29,7 +28,7 @@ hardware core regular device test: - set +a - nix-shell --run "cd ../.. && poetry install" - nix-shell --run "poetry run python bootstrap.py tt ../../trezor-*.bin | ts -s" - - nix-shell --run "poetry run pytest $TESTS_SKIP ../../tests/device_tests | ts -s" + - nix-shell --run "poetry run pytest ../../tests/device_tests | ts -s" timeout: 6h artifacts: name: "$CI_JOB_NAME-$CI_COMMIT_SHORT_SHA" @@ -51,7 +50,6 @@ hardware core btconly device test: variables: TREZOR_PYTEST_SKIP_ALTCOINS: 1 PYTEST_TIMEOUT: "1200" - TESTS_SKIP: "-k 'not 15_of_15'" script: - cd ci/hardware_tests - set -a @@ -59,7 +57,7 @@ hardware core btconly device test: - set +a - nix-shell --run "cd ../.. && poetry install" - nix-shell --run "poetry run python bootstrap.py tt ../../trezor-*.bin | ts -s" - - nix-shell --run "poetry run pytest $TESTS_SKIP ../../tests/device_tests | ts -s" + - nix-shell --run "poetry run pytest ../../tests/device_tests | ts -s" timeout: 4h artifacts: name: "$CI_JOB_NAME-$CI_COMMIT_SHORT_SHA"