diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4db94ed4..4a4b7a55 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,6 +7,9 @@ concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} cancel-in-progress: true +env: + CARGO_TERM_COLOR: always + name: CI jobs: diff --git a/Makefile b/Makefile index 0ccdb1a4..8014352d 100644 --- a/Makefile +++ b/Makefile @@ -23,12 +23,9 @@ unit-test: generate cargo nextest run --all --no-default-features integration-test: generate - cargo nextest run txn_ --all ${INTEGRATION_TEST_ARGS} -#-- --nocapture - cargo nextest run raw_ --all ${INTEGRATION_TEST_ARGS} -#-- --nocapture - cargo nextest run misc_ --all ${INTEGRATION_TEST_ARGS} -#-- --nocapture + cargo test txn_ --all ${INTEGRATION_TEST_ARGS} -- --nocapture + cargo test raw_ --all ${INTEGRATION_TEST_ARGS} -- --nocapture + cargo test misc_ --all ${INTEGRATION_TEST_ARGS} -- --nocapture test: unit-test integration-test