File tree Expand file tree Collapse file tree 10 files changed +9
-35
lines changed Expand file tree Collapse file tree 10 files changed +9
-35
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,6 @@ src/unix/discover_arguments
5
5
# OPAM 2.0 local switches.
6
6
_opam
7
7
8
- # Coverage analysis.
9
- bisect * .out
10
- _coverage /
11
-
12
8
# For local work, tests, etc.
13
9
scratch /
14
10
Original file line number Diff line number Diff line change @@ -55,7 +55,6 @@ clean :
55
55
dune clean
56
56
rm -fr docs/api
57
57
rm -f src/unix/discover_arguments
58
- rm -rf _coverage/
59
58
60
59
EXPECTED_FILES := \
61
60
--expect src/core/ \
@@ -65,10 +64,3 @@ EXPECTED_FILES := \
65
64
--do-not-expect src/unix/lwt_gc.ml \
66
65
--do-not-expect src/unix/lwt_throttle.ml \
67
66
--do-not-expect src/unix/unix_c/
68
-
69
- .PHONY : coverage
70
- coverage :
71
- dune runtest --instrument-with bisect_ppx --force
72
- bisect-ppx-report html $(EXPECTED_FILES )
73
- bisect-ppx-report summary
74
- @echo See _coverage/index.html
Original file line number Diff line number Diff line change 60
60
( depends
61
61
( ocaml ( >= 5 .0) )
62
62
base-unix
63
- ( lwt ( >= 6 ) )
64
- ( bisect_ppx :with -test) ) )
63
+ ( lwt ( >= 6 ) ) ) )
65
64
66
65
( package
67
66
(name lwt)
Original file line number Diff line number Diff line change 1
1
# This file is generated by dune, edit dune-project instead
2
2
opam-version: "2.0"
3
- version: "6.0.0~alpha01 "
3
+ version: "6.0.0~alpha02 "
4
4
synopsis: "Direct-style control-flow and `await` for Lwt"
5
5
maintainer: [
6
6
"Raphaël Proust <
[email protected] >" "Anton Bachin <
[email protected] >"
@@ -11,11 +11,10 @@ homepage: "https://github.com/ocsigen/lwt"
11
11
doc: "https://ocsigen.org/lwt"
12
12
bug-reports: "https://github.com/ocsigen/lwt/issues"
13
13
depends: [
14
- "dune" {>= "2.7 "}
14
+ "dune" {>= "3.15 "}
15
15
"ocaml" {>= "5.0"}
16
16
"base-unix"
17
17
"lwt" {>= "6"}
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 2
2
(public_name lwt)
3
3
(synopsis "Monadic promises and concurrent I/O")
4
4
(wrapped false)
5
- (libraries domain_shims)
6
- (instrumentation
7
- (backend bisect_ppx)))
5
+ (libraries domain_shims))
8
6
9
7
(documentation
10
8
(package lwt))
Original file line number Diff line number Diff line change 2
2
(public_name lwt_direct)
3
3
(synopsis "Direct-style control-flow and `await` for Lwt")
4
4
(enabled_if (>= %{ocaml_version} "5.0"))
5
- (libraries lwt lwt.unix)
6
- (instrumentation
7
- (backend bisect_ppx)))
5
+ (libraries lwt lwt.unix))
Original file line number Diff line number Diff line change 5
5
(ppx_runtime_libraries lwt)
6
6
(kind ppx_rewriter)
7
7
(preprocess
8
- (pps ppxlib.metaquot))
9
- (instrumentation
10
- (backend bisect_ppx)))
8
+ (pps ppxlib.metaquot)))
Original file line number Diff line number Diff line change 2
2
(public_name lwt_react)
3
3
(synopsis "Reactive programming helpers for Lwt")
4
4
(wrapped false)
5
- (libraries lwt react)
6
- (instrumentation
7
- (backend bisect_ppx)))
5
+ (libraries lwt react))
Original file line number Diff line number Diff line change 2
2
(public_name lwt_retry)
3
3
(synopsis "A utility for retrying Lwt computations")
4
4
(wrapped false)
5
- (libraries lwt lwt.unix)
6
- (instrumentation
7
- (backend bisect_ppx)))
5
+ (libraries lwt lwt.unix))
Original file line number Diff line number Diff line change 191
191
(flags
192
192
(:include unix_c_flags.sexp)))
193
193
(c_library_flags
194
- (:include unix_c_library_flags.sexp))
195
- (instrumentation
196
- (backend bisect_ppx)))
194
+ (:include unix_c_library_flags.sexp)))
You can’t perform that action at this time.
0 commit comments