Skip to content

Commit 3142c9e

Browse files
remove coverage/bisect
1 parent 9bd9f9d commit 3142c9e

File tree

10 files changed

+9
-35
lines changed

10 files changed

+9
-35
lines changed

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ src/unix/discover_arguments
55
# OPAM 2.0 local switches.
66
_opam
77

8-
# Coverage analysis.
9-
bisect*.out
10-
_coverage/
11-
128
# For local work, tests, etc.
139
scratch/
1410

Makefile

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ clean :
5555
dune clean
5656
rm -fr docs/api
5757
rm -f src/unix/discover_arguments
58-
rm -rf _coverage/
5958

6059
EXPECTED_FILES := \
6160
--expect src/core/ \
@@ -65,10 +64,3 @@ EXPECTED_FILES := \
6564
--do-not-expect src/unix/lwt_gc.ml \
6665
--do-not-expect src/unix/lwt_throttle.ml \
6766
--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

dune-project

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,7 @@
6060
(depends
6161
(ocaml (>= 5.0))
6262
base-unix
63-
(lwt (>= 6))
64-
(bisect_ppx :with-test)))
63+
(lwt (>= 6))))
6564

6665
(package
6766
(name lwt)

lwt_direct.opam

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is generated by dune, edit dune-project instead
22
opam-version: "2.0"
3-
version: "6.0.0~alpha01"
3+
version: "6.0.0~alpha02"
44
synopsis: "Direct-style control-flow and `await` for Lwt"
55
maintainer: [
66
"Raphaël Proust <[email protected]>" "Anton Bachin <[email protected]>"
@@ -11,11 +11,10 @@ homepage: "https://github.com/ocsigen/lwt"
1111
doc: "https://ocsigen.org/lwt"
1212
bug-reports: "https://github.com/ocsigen/lwt/issues"
1313
depends: [
14-
"dune" {>= "2.7"}
14+
"dune" {>= "3.15"}
1515
"ocaml" {>= "5.0"}
1616
"base-unix"
1717
"lwt" {>= "6"}
18-
"bisect_ppx" {with-test}
1918
"odoc" {with-doc}
2019
]
2120
build: [

src/core/dune

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
(public_name lwt)
33
(synopsis "Monadic promises and concurrent I/O")
44
(wrapped false)
5-
(libraries domain_shims)
6-
(instrumentation
7-
(backend bisect_ppx)))
5+
(libraries domain_shims))
86

97
(documentation
108
(package lwt))

src/direct/dune

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@
22
(public_name lwt_direct)
33
(synopsis "Direct-style control-flow and `await` for Lwt")
44
(enabled_if (>= %{ocaml_version} "5.0"))
5-
(libraries lwt lwt.unix)
6-
(instrumentation
7-
(backend bisect_ppx)))
5+
(libraries lwt lwt.unix))

src/ppx/dune

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,4 @@
55
(ppx_runtime_libraries lwt)
66
(kind ppx_rewriter)
77
(preprocess
8-
(pps ppxlib.metaquot))
9-
(instrumentation
10-
(backend bisect_ppx)))
8+
(pps ppxlib.metaquot)))

src/react/dune

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@
22
(public_name lwt_react)
33
(synopsis "Reactive programming helpers for Lwt")
44
(wrapped false)
5-
(libraries lwt react)
6-
(instrumentation
7-
(backend bisect_ppx)))
5+
(libraries lwt react))

src/retry/dune

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@
22
(public_name lwt_retry)
33
(synopsis "A utility for retrying Lwt computations")
44
(wrapped false)
5-
(libraries lwt lwt.unix)
6-
(instrumentation
7-
(backend bisect_ppx)))
5+
(libraries lwt lwt.unix))

src/unix/dune

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,4 @@
191191
(flags
192192
(:include unix_c_flags.sexp)))
193193
(c_library_flags
194-
(:include unix_c_library_flags.sexp))
195-
(instrumentation
196-
(backend bisect_ppx)))
194+
(:include unix_c_library_flags.sexp)))

0 commit comments

Comments
 (0)