Skip to content

Commit

Permalink
Ensure that all notebooks are found and run by 'make analyse'
Browse files Browse the repository at this point in the history
  • Loading branch information
fjclark committed Jun 19, 2024
1 parent 3cbf635 commit 0903f0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ PACKAGE_NAME := a3fe_reproduce
CONDA_ENV_RUN := conda run --no-capture-output --name $(PACKAGE_NAME)

ANALYSIS_DIRS := $(wildcard analysis/*)
ANALYSIS_NBS := $(wildcard $(ANALYSIS_DIRS)/*analysis.ipynb)
ANALYSIS_NBS := $(shell find $(ANALYSIS_DIRS) -name '*analysis.ipynb')
ANALYSIS_OUTPUT_DIRS := $(ANALYSIS_DIRS:%=%/final_analysis)

.PHONY: env test-analysis clean
.PHONY: env analysis clean

env:
mamba create --name $(PACKAGE_NAME)
Expand Down

0 comments on commit 0903f0d

Please sign in to comment.