diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-05-12 15:26:43 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-05-12 16:55:42 -0400 |
commit | 5101665a31b03a7fe14b832658cf80427ac8ba21 (patch) | |
tree | d852a3de225de8fef4e590ad79ca11ed21bfd212 /.github/workflows | |
parent | 956895430edd4a4ea2963798c3485ab227ea525c (diff) | |
download | bfs-5101665a31b03a7fe14b832658cf80427ac8ba21.tar.xz |
tests: Use skip_if for sudo tests
This lets us categorize the sudo tests properly, which fixes e.g.
$ ./tests.sh --posix --sudo
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b0a2f49..81b7f77 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -84,4 +84,4 @@ jobs: run: | muon=$(tailscale ip -6 muon) rsync -rl --delete . "[$muon]:bfs" - ssh "$muon" 'gmake -C bfs -j$(sysctl -n hw.ncpu) distcheck' + ssh "$muon" 'gmake -C bfs -j$(sysctl -n hw.ncpu) distcheck DISTCHECK_FLAGS=TEST_FLAGS=--verbose' |