Fokko commented on code in PR #2125: URL: https://github.com/apache/iceberg-python/pull/2125#discussion_r2159496745
########## Makefile: ########## @@ -14,106 +14,142 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# ======================== +# Configuration Variables +# ======================== +PYTEST_ARGS ?= -v # Override with e.g. PYTEST_ARGS="-vv --tb=short" +COVERAGE ?= 0 # Set COVERAGE=1 to enable coverage: make test COVERAGE=1 -help: ## Display this help - @awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m\033[0m\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-20s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST) +ifeq ($(COVERAGE),1) Review Comment: Love it -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org