Skip to content

Commit 1848986

Browse files
committed
Add env var for fixtures folder conventions
1 parent 4863248 commit 1848986

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,20 @@ SRC_FOLDER ?= src
102102
TESTS_FOLDER ?= test
103103

104104
# Define the folder name convention for test fixtures:
105-
TESTS_FIXTURES_FOLDER ?= test/fixtures
105+
TESTS_FIXTURES_FOLDER ?= $(TESTS_FOLDER)/fixtures
106106

107107
# Define the folder name convention for examples files:
108108
EXAMPLES_FOLDER ?= examples
109109

110+
# Define the folder name convention for examples fixtures:
111+
EXAMPLES_FIXTURES_FOLDER ?= $(EXAMPLES_FOLDER)/fixtures
112+
110113
# Define the folder name convention for benchmark files:
111114
BENCHMARKS_FOLDER ?= benchmark
112115

116+
# Define the folder name convention for benchmark fixtures:
117+
BENCHMARKS_FIXTURES_FOLDER ?= (BENCHMARKS_FOLDER)/fixtures
118+
113119
# Define the folder name convention for executables:
114120
BIN_FOLDER ?= bin
115121

0 commit comments

Comments
 (0)