Skip to content

Commit

Permalink
Trigger CI for leanprover/lean4#3835
Browse files Browse the repository at this point in the history
  • Loading branch information
leanprover-community-mathlib4-bot committed Apr 6, 2024
2 parents e7d18e3 + eb1b938 commit 97e4203
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
8 changes: 6 additions & 2 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,20 @@ SHELL=/usr/bin/env -S bash -o pipefail

TESTS := $(shell find test -name '*.lean')

.PHONY: all build test lint
.PHONY: all build test lint testdeps

all: build test

build:
lake build

testdeps: build
# add any extra targets that tests depend on here
lake build ProofWidgets

test: $(addsuffix .run, $(TESTS))

test/%.run: build
test/%.run: testdeps
lake env lean test/$* | scripts/check_silent.sh test/$*.log

lint: build
Expand Down
5 changes: 0 additions & 5 deletions Mathlib/Tactic/Common.lean
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@ import Qq
-- Tools for analysing imports, like `#find_home`, `#minimize_imports`, ...
import ImportGraph.Imports

-- Currently we don't need to import all of ProofWidgets,
-- but without this, if you don't run `lake build ProofWidgets` then `make test` will fail.
-- Hopefully `lake` will be able to handle tests later.
import ProofWidgets

-- Now import all tactics defined in Mathlib that do not require theory files.
import Mathlib.Mathport.Rename
import Mathlib.Tactic.ApplyCongr
Expand Down

0 comments on commit 97e4203

Please sign in to comment.