Skip to content

Commit

Permalink
Opam package: add missing test dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
vouillon committed Oct 18, 2024
1 parent 23283e7 commit 862369f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,5 @@ jobs:
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam install . --deps-only --with-test
- run: opam install core_bench core_unix
- run: opam exec -- dune build
- run: opam exec -- dune runtest
6 changes: 5 additions & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@
(depends
(ocaml (>= 4.12.0))
seq
(ppx_expect :with-test)
(core_bench :with-test)
(core_unix :with-test)
(memtrace :with-test)
(csv :with-test)
(ppx_expect (and (>= v0.17.0) :with-test))
(ounit2 :with-test))
(description "
Pure OCaml regular expressions with:
Expand Down
6 changes: 5 additions & 1 deletion re.opam
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ depends: [
"dune" {>= "3.12"}
"ocaml" {>= "4.12.0"}
"seq"
"ppx_expect" {with-test}
"core_bench" {with-test}
"core_unix" {with-test}
"memtrace" {with-test}
"csv" {with-test}
"ppx_expect" {>= "v0.17.0" & with-test}
"ounit2" {with-test}
"odoc" {with-doc}
]
Expand Down

0 comments on commit 862369f

Please sign in to comment.