File tree Expand file tree Collapse file tree 6 files changed +5
-15
lines changed Expand file tree Collapse file tree 6 files changed +5
-15
lines changed Original file line number Diff line number Diff line change 58
58
59
59
- run : opam exec -- dune build
60
60
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
64
62
65
63
lint-opam :
66
64
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 21
21
" Shon Feder <shon.feder@gmail.com>" )
22
22
( depends
23
23
( ocaml ( >= 4 .08) )
24
- ( lwt ( >= 5 .3.0) )
25
- ( bisect_ppx :with -test) ) )
24
+ ( lwt ( >= 5 .3.0) ) ) )
26
25
27
26
( package
28
27
(name lwt_ppx)
29
28
(synopsis " PPX syntax for Lwt, providing something similar to async/await from JavaScript" )
30
29
( depends
31
30
( ocaml ( >= 4 .08) )
32
- ( ppxlib ( >= 0 .16.0 ) )
31
+ ( ppxlib ( and ( >= 0 .16) ( < 0 .36 ) ) )
33
32
( ppx_let :with -test)
34
- ( bisect_ppx :with -test)
35
33
( lwt ( >= 5 .7.0) ) ) )
36
34
37
35
( package
41
39
( ocaml ( >= 4 .08) )
42
40
( cppo ( and :build ( >= 1 .1.0) ) )
43
41
( lwt ( >= 3 .0.0) )
44
- ( react ( >= 1 .0.0) )
45
- ( bisect_ppx :with -test) ) )
42
+ ( react ( >= 1 .0.0) ) ) )
46
43
47
44
( package
48
45
(name lwt)
@@ -61,7 +58,6 @@ synchronization primitives. Code can be run in parallel on an opt-in basis.
61
58
( cppo ( and :build ( >= 1 .1.0) ) )
62
59
( ocamlfind ( and :dev ( >= 1 .7.3-1) ) )
63
60
( odoc ( and :with -doc ( >= 2 .3.0) ) )
64
- ( bisect_ppx :with -test)
65
61
dune-configurator
66
62
ocplib-endian)
67
63
( depopts base-threads base-unix conf-libev) )
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ depends: [
25
25
"cppo" {build & >= "1.1.0"}
26
26
"ocamlfind" {dev & >= "1.7.3-1"}
27
27
"odoc" {with-doc & >= "2.3.0"}
28
- "bisect_ppx" {with-test}
29
28
"dune-configurator"
30
29
"ocplib-endian"
31
30
]
Original file line number Diff line number Diff line change @@ -13,9 +13,8 @@ bug-reports: "https://github.com/ocsigen/lwt/issues"
13
13
depends: [
14
14
"dune" {>= "2.7"}
15
15
"ocaml" {>= "4.08"}
16
- "ppxlib" {>= "0.16.0 "}
16
+ "ppxlib" {>= "0.16" & < "0.36 "}
17
17
"ppx_let" {with-test}
18
- "bisect_ppx" {with-test}
19
18
"lwt" {>= "5.7.0"}
20
19
"odoc" {with-doc}
21
20
]
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ depends: [
15
15
"cppo" {build & >= "1.1.0"}
16
16
"lwt" {>= "3.0.0"}
17
17
"react" {>= "1.0.0"}
18
- "bisect_ppx" {with-test}
19
18
"odoc" {with-doc}
20
19
]
21
20
build: [
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ depends: [
13
13
"dune" {>= "2.7"}
14
14
"ocaml" {>= "4.08"}
15
15
"lwt" {>= "5.3.0"}
16
- "bisect_ppx" {with-test}
17
16
"odoc" {with-doc}
18
17
]
19
18
build: [
You can’t perform that action at this time.
0 commit comments