mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-21 12:39:08 +01:00
16 lines
567 B
Bash
16 lines
567 B
Bash
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
|
|
. "$DIR/prelude.sh"
|
|
|
|
set -o errexit
|
|
set -o verbose
|
|
|
|
if [ -f "src/jstestfuzz/out/minimizer-outputs-minimizedtest.js" ]; then
|
|
activate_venv
|
|
$python -c 'import json; print(json.dumps([{
|
|
"name": "Wiki: Running minimized Agg fuzzer and Query fuzzer tests locally",
|
|
"link": "https://github.com/mongodb/mongo/wiki/Running-minimized-Agg-fuzzer-and-Query-fuzzer-tests-locally",
|
|
"visibility": "public",
|
|
"ignore_for_fetch": True
|
|
}]))' > wiki_page_running_minimized_test_location.json
|
|
fi
|