Skip to content

Commit a1f74d6

Browse files
committed
Initial version of UI tests.
1 parent ab99baf commit a1f74d6

File tree

85 files changed

+1531
-235
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+1531
-235
lines changed

.github/workflows/ci.yml

+21
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ jobs:
7474
- name: Run unit tests
7575
run: cargo test --locked --all-targets --workspace --all-features
7676
timeout-minutes: 10
77+
78+
- name: Run ignored unit tests
79+
run: cargo test --locked --all-targets --workspace --all-features -- --ignored
80+
timeout-minutes: 10
7781
check:
7882
runs-on: ubuntu-latest
7983
outputs:
@@ -347,6 +351,23 @@ jobs:
347351
TARGET: aarch64-unknown-linux-gnu
348352
shell: bash
349353

354+
rest-args:
355+
needs: [test, check]
356+
runs-on: ubuntu-latest
357+
if: github.actor == 'bors[bot]'
358+
steps:
359+
- uses: actions/checkout@v3
360+
- uses: ./.github/actions/setup-rust
361+
362+
- name: LLVM instrument coverage
363+
uses: ./.github/actions/cargo-llvm-cov
364+
with:
365+
name: integration-remote
366+
367+
- name: Run Rest Args Test
368+
run: ./ci/test-rest-args.sh
369+
shell: bash
370+
350371
publish:
351372
needs: [build, check, fmt, clippy, cargo-deny]
352373
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)