Skip to content

Commit

Permalink
Update makefile to work with micromamba on github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
fjclark committed Sep 17, 2024
1 parent 26ae84d commit 99bb72d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PACKAGE_NAME := red
PACKAGE_DIR := red

CONDA_ENV_RUN = conda run --no-capture-output --name $(PACKAGE_NAME)
CONDA_ENV_RUN = $(if $(GITHUB_ACTIONS),micromamba run -n $(PACKAGE_NAME),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

Expand Down

0 comments on commit 99bb72d

Please sign in to comment.