From 827cee905dc42d5e68e35f50f347f55e69cfb62d Mon Sep 17 00:00:00 2001 From: Bushstar Date: Wed, 17 Jan 2024 10:17:11 +0000 Subject: [PATCH] Run unit tests direct to avoid compiling again --- .github/workflows/tests.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index a45fc9880de..010fd5a5d0f 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -74,11 +74,11 @@ jobs: - name: Cleanup cargo deps run: rm -rf build/lib/target/debug/deps - - name: Display RAM and swap - run: free -h - - - name: E2E tests - run: ./make.sh test + - name: Unit tests + run: ./build/src/test/test_defi + + - name: Functional tests + run: ./make.sh test-py rust-tests: runs-on: ubuntu-latest