Skip to content
This repository was archived by the owner on Mar 23, 2023. It is now read-only.

Commit 7a87e7a

Browse files
committed
Ensure traceback module is available to tests
1 parent 67ca845 commit 7a87e7a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,13 +175,13 @@ $(COMPILER_D_FILES): $(PY_DIR)/%.d: $(PY_DIR)/%.py $(COMPILER_SRCS) $(PYTHONPARS
175175
-include $(COMPILER_D_FILES)
176176

177177
# Does not depend on stdlibs since it makes minimal use of them.
178-
$(COMPILER_EXPR_VISITOR_PASS_FILES): $(PY_DIR)/grumpy/compiler/expr_visitor_test.%.pass: $(PY_DIR)/grumpy/compiler/expr_visitor_test.py $(RUNNER_BIN) $(COMPILER) $(RUNTIME)
178+
$(COMPILER_EXPR_VISITOR_PASS_FILES): $(PY_DIR)/grumpy/compiler/expr_visitor_test.%.pass: $(PY_DIR)/grumpy/compiler/expr_visitor_test.py $(RUNNER_BIN) $(COMPILER) $(RUNTIME) $(PKG_DIR)/__python__/traceback.a
179179
@$(PYTHON) $< --shard=$*
180180
@touch $@
181181
@echo 'compiler/expr_visitor_test $* PASS'
182182

183183
# Does not depend on stdlibs since it makes minimal use of them.
184-
$(COMPILER_STMT_PASS_FILES): $(PY_DIR)/grumpy/compiler/stmt_test.%.pass: $(PY_DIR)/grumpy/compiler/stmt_test.py $(RUNNER_BIN) $(COMPILER) $(RUNTIME)
184+
$(COMPILER_STMT_PASS_FILES): $(PY_DIR)/grumpy/compiler/stmt_test.%.pass: $(PY_DIR)/grumpy/compiler/stmt_test.py $(RUNNER_BIN) $(COMPILER) $(RUNTIME) $(PKG_DIR)/__python__/traceback.a
185185
@$(PYTHON) $< --shard=$*
186186
@touch $@
187187
@echo 'compiler/stmt_test $* PASS'

0 commit comments

Comments
 (0)