Skip to content

Commit

Permalink
fix: Ensure "make -C tests" runs after "make install"
Browse files Browse the repository at this point in the history
  • Loading branch information
erikmd committed Feb 16, 2024
1 parent 4c008f2 commit adc6240
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions coq-bignums.opam
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ This Coq library provides BigN, BigZ, and BigQ that used to
be part of the standard library."""

build: [make "-j%{jobs}%"]
run-test: [make "-C" "tests" "-j%{jobs}%"]
install: [make "install"]
install: [
[make "install"]
[make "-C" "tests" "-j%{jobs}%"] {with-test}
]
depends: [
"ocaml"
"ocaml"
"coq" {= "dev"}
]

Expand Down

0 comments on commit adc6240

Please sign in to comment.