Skip to content

Commit

Permalink
Remove tests computing HasPushoutComplement on Toposes.jl
Browse files Browse the repository at this point in the history
The one using FinSets runs out of memory in GitHub actions.
  • Loading branch information
zickgraf committed Jul 24, 2023
1 parent d4fc09e commit bab0662
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion gap_to_julia
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ if [ "$PKG_NAME" = "CAP" ]; then
fi

if [ "$PKG_NAME" = "FinSetsForCAP" ]; then
# remove tests neededing CompilerForCAP
# remove tests needing CompilerForCAP
rm -f $(grep -l "CapJitPrecompileCategoryAndCompareResult(" "$JULIA_PKG_DIR$PKG_NAME"/docs/src/*.tst.autogen.md)

cat "$JULIA_PKG_DIR$PKG_NAME"/docs/src/finsetsforcap*.tst.autogen.md > "$JULIA_PKG_DIR$PKG_NAME"/docs/src/AutoDocTests.tst.autogen.md
Expand All @@ -249,6 +249,10 @@ if [ "$PKG_NAME" = "CartesianCategories" ]; then
fi

if [ "$PKG_NAME" = "Toposes" ]; then
# remove tests computing HasPushoutComplement
# the one using FinSets runs out of memory in GitHub actions
rm -f $(grep -l "HasPushoutComplement(" "$JULIA_PKG_DIR$PKG_NAME"/docs/src/*.tst.autogen.md)

cat "$JULIA_PKG_DIR$PKG_NAME"/docs/src/toposes*.tst.autogen.md > "$JULIA_PKG_DIR$PKG_NAME"/docs/src/AutoDocTests.tst.autogen.md
rm "$JULIA_PKG_DIR$PKG_NAME"/docs/src/toposes*.tst.autogen.md

Expand Down

0 comments on commit bab0662

Please sign in to comment.