Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ clean:

coverage: clean
@BISECT_ENABLE=YES dune runtest --force
@bisect-ppx-report -I _build/default/ -html _coverage/ \
`find . -name 'bisect*.out'`
@bisect-ppx-report html

test:
@dune runtest --force
Expand Down
2 changes: 1 addition & 1 deletion easy_xlsx/src/dune
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
(name easy_xlsx)
(public_name easy_xlsx)
(libraries camlzip ptime spreadsheetml str)
(preprocess (pps ppx_jane bisect_ppx -conditional)))
(preprocess (pps ppx_jane bisect_ppx)))
2 changes: 1 addition & 1 deletion easy_xlsx/test/test_easy_xlsx_docs.ml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ let pp_diff fmt (exp, real) =
| exp, real ->
let exp_row = List.hd exp in
let real_row = List.hd real in
if Option.equal (List.equal ~equal:String.equal) exp_row real_row then
if Option.equal (List.equal String.equal) exp_row real_row then
print_opt_row ' ' exp_row
else begin
print_opt_row '-' exp_row;
Expand Down
2 changes: 1 addition & 1 deletion open_packaging.opam
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build: [
]

depends: [
"base" {= "v0.11.1"}
"base" {= "v0.14.1"}
"ocaml" {>= "4.04.2"}
"ppx_jane"
"sexplib"
Expand Down
2 changes: 1 addition & 1 deletion open_packaging/src/dune
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
(public_name open_packaging)
(libraries base sexplib stdint xml-light)
(flags (:standard -w -47))
(preprocess (pps ppx_jane bisect_ppx -conditional)))
(preprocess (pps ppx_jane bisect_ppx)))
2 changes: 1 addition & 1 deletion spreadsheetml/src/dune
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
(public_name spreadsheetml)
(libraries open_packaging)
(flags (:standard -w -47))
(preprocess (pps ppx_jane bisect_ppx -conditional)))
(preprocess (pps ppx_jane bisect_ppx)))