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

testsuite: skip huge test unless requested #210

Merged
merged 1 commit into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
--with-tcp-wrappers
- name: make
run: make
- name: make check
- name: GITHUB_CI=t make check
run: make check
- name: make distcheck
run: DISTCHECK_CONFIGURE_FLAGS=--with-redfishpower make distcheck
Expand Down
6 changes: 6 additions & 0 deletions t/t0039-llnl-el-capitan-cluster.t
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ test_description='Check LLNL El Capitan config'

. `dirname $0`/sharness.sh

# Setting the --long option or TEST_LONG=t fulfills the EXPENSIVE prereq
if ! test_have_prereq EXPENSIVE && ! test -n "$GITHUB_CI"; then
skip_all='skipping large scale El Capitan test'
test_done
fi

ulimit -n 2048

powermand=$SHARNESS_BUILD_DIRECTORY/src/powerman/powermand
Expand Down
Loading