Skip to content

Commit 3c70f02

Browse files
authored
Merge pull request #1063 from ocsigen/disable-bisect-ppx
Disable `bisect_ppx`
2 parents 3451aca + 35f3a7a commit 3c70f02

File tree

6 files changed

+5
-15
lines changed

6 files changed

+5
-15
lines changed

.github/workflows/workflow.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,7 @@ jobs:
5858

5959
- run: opam exec -- dune build
6060

61-
- run: opam exec -- dune runtest --instrument-with bisect_ppx --force
62-
63-
- run: opam exec -- bisect-ppx-report summary --per-file
61+
- run: opam exec -- dune runtest
6462

6563
lint-opam:
6664
runs-on: ubuntu-latest

dune-project

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,15 @@
2121
"Shon Feder <shon.feder@gmail.com>")
2222
(depends
2323
(ocaml (>= 4.08))
24-
(lwt (>= 5.3.0))
25-
(bisect_ppx :with-test)))
24+
(lwt (>= 5.3.0))))
2625

2726
(package
2827
(name lwt_ppx)
2928
(synopsis "PPX syntax for Lwt, providing something similar to async/await from JavaScript")
3029
(depends
3130
(ocaml (>= 4.08))
32-
(ppxlib (>= 0.16.0))
31+
(ppxlib (and (>= 0.16) (< 0.36)))
3332
(ppx_let :with-test)
34-
(bisect_ppx :with-test)
3533
(lwt (>= 5.7.0))))
3634

3735
(package
@@ -41,8 +39,7 @@
4139
(ocaml (>= 4.08))
4240
(cppo (and :build (>= 1.1.0)))
4341
(lwt (>= 3.0.0))
44-
(react (>= 1.0.0))
45-
(bisect_ppx :with-test)))
42+
(react (>= 1.0.0))))
4643

4744
(package
4845
(name lwt)
@@ -61,7 +58,6 @@ synchronization primitives. Code can be run in parallel on an opt-in basis.
6158
(cppo (and :build (>= 1.1.0)))
6259
(ocamlfind (and :dev (>= 1.7.3-1)))
6360
(odoc (and :with-doc (>= 2.3.0)))
64-
(bisect_ppx :with-test)
6561
dune-configurator
6662
ocplib-endian)
6763
(depopts base-threads base-unix conf-libev))

lwt.opam

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ depends: [
2525
"cppo" {build & >= "1.1.0"}
2626
"ocamlfind" {dev & >= "1.7.3-1"}
2727
"odoc" {with-doc & >= "2.3.0"}
28-
"bisect_ppx" {with-test}
2928
"dune-configurator"
3029
"ocplib-endian"
3130
]

lwt_ppx.opam

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@ bug-reports: "https://github.com/ocsigen/lwt/issues"
1313
depends: [
1414
"dune" {>= "2.7"}
1515
"ocaml" {>= "4.08"}
16-
"ppxlib" {>= "0.16.0"}
16+
"ppxlib" {>= "0.16" & < "0.36"}
1717
"ppx_let" {with-test}
18-
"bisect_ppx" {with-test}
1918
"lwt" {>= "5.7.0"}
2019
"odoc" {with-doc}
2120
]

lwt_react.opam

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ depends: [
1515
"cppo" {build & >= "1.1.0"}
1616
"lwt" {>= "3.0.0"}
1717
"react" {>= "1.0.0"}
18-
"bisect_ppx" {with-test}
1918
"odoc" {with-doc}
2019
]
2120
build: [

lwt_retry.opam

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ depends: [
1313
"dune" {>= "2.7"}
1414
"ocaml" {>= "4.08"}
1515
"lwt" {>= "5.3.0"}
16-
"bisect_ppx" {with-test}
1716
"odoc" {with-doc}
1817
]
1918
build: [

0 commit comments

Comments
 (0)