-
Notifications
You must be signed in to change notification settings - Fork 4
/
mutaml.opam
49 lines (49 loc) · 1.29 KB
/
mutaml.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.3"
synopsis: "A mutation tester for OCaml"
description: """
Mutaml is a mutation testing tool for OCaml.
It uses a ppxlib-based preprocessor to make a series of small
breaking changes to a program's source code and then runs
the program's testsuite for each of them to catch uncaught
misbehaviour.
"""
maintainer: ["Jan Midtgaard <[email protected]>"]
authors: ["Jan Midtgaard <[email protected]>"]
license: "BSD-2-Clause"
tags: ["test" "mutation testing"]
homepage: "https://github.com/jmid/mutaml"
doc: "https://github.com/jmid/mutaml"
bug-reports: "https://github.com/jmid/mutaml/issues"
depends: [
"dune" {>= "3.0"}
"ocaml" {>= "4.12.0"}
"ppxlib" {>= "0.28.0"}
"ppx_yojson_conv" {>= "0.14.0"}
"stdlib-random"
"conf-timeout"
"conf-which"
"conf-diffutils"
"ocaml-compiler-libs" {>= "v0.12.0"}
"ppx_derivers" {>= "1.2.1"}
"yojson" {>= "2.0.0"}
"ppx_deriving" {with-test}
"ounit2" {with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test & arch != "ppc64" & arch != "riscv64" & ocaml:version < "5.3"}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/jmid/mutaml.git"