File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ the root directory, run:
6060rm -rf dist/*
6161poetry publish --build && cd book && ./Deepnote.sh
6262```
63- - Finally, PR the updated pyproject.toml (without the ` requires new pip wheels ` label).
63+ - Finally, PR the updated pyproject.toml (* without* the ` requires new pip wheels ` label).
6464
6565Note: use ` poetry config pypi-token.pypi <token> ` once to set up your pypi token.
6666
Original file line number Diff line number Diff line change 33# Copyright 2020 Massachusetts Institute of Technology.
44# Licensed under the BSD 3-Clause License. See LICENSE.TXT for details.
55
6+
67set -euo pipefail
78
89# Run the tests in batches to reduce the memory footprint on CI. (I was running
910# out of memory on manipulation's jammy CI)
10- bazel query ' kind(test, //...)' > /tmp/my_tests.txt
11+ if [ -n " ${EXCLUDE_TESTS:- } " ]; then
12+ echo " Excluding tests: $EXCLUDE_TESTS "
13+ bazel query " kind(test, //...) except $EXCLUDE_TESTS " > /tmp/my_tests.txt
14+ else
15+ bazel query ' kind(test, //...)' > /tmp/my_tests.txt
16+ fi
1117sed ' s#^//:#:#g' /tmp/my_tests.txt > /tmp/all_tests.txt
1218
1319BATCH_SIZE=10
Original file line number Diff line number Diff line change 66set -euo pipefail
77
88# Run the tests in batches to reduce the memory footprint on CI. (I was running
9- # out of memory on manipulation's jammy CI)
10- bazel query ' kind(test, //...)' > /tmp/my_tests.txt
9+ # out of memory on manipulation's jammy CI).
10+ if [ -n " ${EXCLUDE_TESTS:- } " ]; then
11+ echo " Excluding tests: $EXCLUDE_TESTS "
12+ bazel query " kind(test, //...) except $EXCLUDE_TESTS " > /tmp/my_tests.txt
13+ else
14+ bazel query ' kind(test, //...)' > /tmp/my_tests.txt
15+ fi
1116sed ' s#^//:#:#g' /tmp/my_tests.txt > /tmp/all_tests.txt
1217
1318BATCH_SIZE=15
You can’t perform that action at this time.
0 commit comments