diff --git a/tests/run-tests b/tests/run-tests index d6c472a5..0dd750d8 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -174,6 +174,10 @@ for testcase in $WORKSPACE/tests/*.TestCase; do echo "skipping install.TestCase, its too troublesome in CI builds" continue fi + if [ $(uname) != "Linux" ] && [ $testcase == $WORKSPACE/tests/nightly.TestCase ]; then + echo "skipping nightly.TestCase, it currently only works GNU/Linux" + continue + fi $testcase done