Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use cargo-nextest in test-alpine #1021

Merged
merged 1 commit into from
Jul 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ jobs:
- name: Install build requirements
run: |
set -ex
apk add cargo python3-dev libffi-dev py3-pip
apk add cargo python3-dev libffi-dev py3-pip curl bash
pip3 install cffi virtualenv
- name: Cache cargo build
uses: Swatinem/rust-cache@v1
Expand All @@ -204,10 +204,12 @@ jobs:
with:
path: test-crates/targets
key: test-crates-${{ runner.os }}-alpine-${{ hashFiles('test-crates/*/Cargo.lock') }}
- name: Install cargo-nextest
uses: taiki-e/install-action@nextest
- name: cargo test
run: |
# unset GITHUB_ACTIONS env var to disable zig related tests
env -u GITHUB_ACTIONS cargo test
env -u GITHUB_ACTIONS cargo nextest run --features password-storage

test-auditwheel:
name: Test Auditwheel
Expand Down