Skip to content

Commit

Permalink
Skip unrelated test with more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
phoebusm committed Nov 27, 2024
1 parent 9370d5f commit 605f4ca
Show file tree
Hide file tree
Showing 26 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,10 +215,10 @@ jobs:
run: |
if [ ${{inputs.python3}} -gt 6 ]
then
find python/tests/* -maxdepth 0 -type d ! -regex '.*\(__pycache__\|util\|nonreg\|scripts\)' -printf '"%f",' |
find python/tests/* -maxdepth 0 -type d ! -regex '.*\(__pycache__\|util\|nonreg\|scripts\|hypothesis\|compat\|stress\|unit\)' -printf '"%f",' |
sed 's/^/test_dirs=[/ ; s/"hypothesis"/"{hypothesis,nonreg,scripts}"/ ; s/,$/]/' | tee -a $GITHUB_ENV
else
find python/tests/* -maxdepth 0 -type d ! -regex '.*\(__pycache__\|util\|nonreg\|scripts\|compat\)' -printf '"%f",' |
find python/tests/* -maxdepth 0 -type d ! -regex '.*\(__pycache__\|util\|nonreg\|scripts\|compat\|hypothesis\|stress\|unit\)' -printf '"%f",' |
sed 's/^/test_dirs=[/ ; s/"hypothesis"/"{hypothesis,nonreg,scripts}"/ ; s/,$/]/' | tee -a $GITHUB_ENV
fi
Expand Down
2 changes: 1 addition & 1 deletion build_tooling/parallel_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ cd $PARALLEL_TEST_ROOT

export ARCTICDB_RAND_SEED=$RANDOM

$catch python -m pytest --timeout=3600 $PYTEST_XDIST_MODE -v --log-file="$TEST_OUTPUT_DIR/pytest-logger.$group.log" \
$catch python -m pytest --timeout=3600 $PYTEST_XDIST_MODE -vs --log-file="$TEST_OUTPUT_DIR/pytest-logger.$group.log" \
--junitxml="$TEST_OUTPUT_DIR/pytest.$group.xml" \
--basetemp="$PARALLEL_TEST_ROOT/temp-pytest-output" \
"$@" 2>&1 | sed -ur "s#^(tests/.*/([^/]+\.py))?#\2#"

0 comments on commit 605f4ca

Please sign in to comment.