From 499ea1bb882d8267e073b76d8d9371bc80a1b4c3 Mon Sep 17 00:00:00 2001 From: finlayclark Date: Tue, 17 Sep 2024 15:42:35 +0100 Subject: [PATCH] Attempt 6 to get CI working on Mac --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c093016..e85c19a 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ PACKAGE_NAME := red PACKAGE_DIR := red # If we're running in GitHub Actions, we need to use micromamba instead of conda. -CONDA_ENV_RUN = $(if $(GITHUB_ACTIONS),micromamba run -n $(PACKAGE_NAME),conda run --no-capture-output --name $(PACKAGE_NAME)) +CONDA_ENV_RUN = $(if $(GITHUB_ACTIONS),"",conda run --no-capture-output --name $(PACKAGE_NAME)) TEST_ARGS := -v --cov=$(PACKAGE_NAME) --cov-report=term --cov-report=xml --junitxml=unit.xml --color=yes