Skip to content

Commit 30bf6ed

Browse files
authored
Merge pull request ocaml#23413 from samoht/release-alcotest-1.7.0
[new release] alcotest, alcotest-mirage, alcotest-lwt, alcotest-js and alcotest-async (1.7.0)
2 parents f5d0caf + 57957cb commit 30bf6ed

File tree

5 files changed

+240
-0
lines changed
  • packages
    • alcotest-async/alcotest-async.1.7.0
    • alcotest-js/alcotest-js.1.7.0
    • alcotest-lwt/alcotest-lwt.1.7.0
    • alcotest-mirage/alcotest-mirage.1.7.0
    • alcotest/alcotest.1.7.0

5 files changed

+240
-0
lines changed
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
opam-version: "2.0"
2+
synopsis: "Async-based helpers for Alcotest"
3+
description: "Async-based helpers for Alcotest"
4+
maintainer: ["[email protected]"]
5+
authors: ["Thomas Gazagnaire"]
6+
license: "ISC"
7+
homepage: "https://github.com/mirage/alcotest"
8+
doc: "https://mirage.github.io/alcotest"
9+
bug-reports: "https://github.com/mirage/alcotest/issues"
10+
depends: [
11+
"dune" {>= "3.0"}
12+
"re" {with-test}
13+
"fmt" {with-test}
14+
"cmdliner" {with-test & >= "1.1.0"}
15+
"core" {>= "v0.15.0"}
16+
"core_unix" {>= "v0.15.0"}
17+
"base"
18+
"async_kernel"
19+
"ocaml" {>= "4.11.0"}
20+
"alcotest" {= version}
21+
"async" {>= "v0.15.0"}
22+
"async_unix" {>= "v0.15.0"}
23+
"odoc" {with-doc}
24+
]
25+
build: [
26+
["dune" "subst"] {dev}
27+
[
28+
"dune"
29+
"build"
30+
"-p"
31+
name
32+
"-j"
33+
jobs
34+
"@install"
35+
"@runtest" {with-test}
36+
"@doc" {with-doc}
37+
]
38+
]
39+
dev-repo: "git+https://github.com/mirage/alcotest.git"
40+
url {
41+
src:
42+
"https://github.com/mirage/alcotest/releases/download/1.7.0/alcotest-1.7.0.tbz"
43+
checksum: [
44+
"sha256=812bacdb34b45e88995e07d7306bdab2f72479ef1996637f1d5d1f41667902df"
45+
"sha512=4ae1ba318949ec9db8b87bc8072632a02f0e4003a95ab21e474f5c34c3b5bde867b0194a2d0ea7d9fc4580c70a30ca39287d33a8c134acc7611902f79c7b7ce8"
46+
]
47+
}
48+
x-commit-hash: "927088ffadce153306a36cef4d0fed52609208f6"
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
opam-version: "2.0"
2+
synopsis:
3+
"Virtual package containing optional JavaScript dependencies for Alcotest"
4+
description:
5+
"Virtual package containing optional JavaScript dependencies for Alcotest"
6+
maintainer: ["[email protected]"]
7+
authors: ["Thomas Gazagnaire"]
8+
license: "ISC"
9+
homepage: "https://github.com/mirage/alcotest"
10+
doc: "https://mirage.github.io/alcotest"
11+
bug-reports: "https://github.com/mirage/alcotest/issues"
12+
depends: [
13+
"dune" {>= "3.0"}
14+
"alcotest" {= version}
15+
"js_of_ocaml-compiler" {>= "3.11.0"}
16+
"fmt" {with-test & >= "0.8.7"}
17+
"cmdliner" {with-test & >= "1.1.0"}
18+
"odoc" {with-doc}
19+
]
20+
build: [
21+
["dune" "subst"] {dev}
22+
[
23+
"dune"
24+
"build"
25+
"-p"
26+
name
27+
"-j"
28+
jobs
29+
"@install"
30+
"@runtest" {with-test}
31+
"@doc" {with-doc}
32+
]
33+
]
34+
dev-repo: "git+https://github.com/mirage/alcotest.git"
35+
url {
36+
src:
37+
"https://github.com/mirage/alcotest/releases/download/1.7.0/alcotest-1.7.0.tbz"
38+
checksum: [
39+
"sha256=812bacdb34b45e88995e07d7306bdab2f72479ef1996637f1d5d1f41667902df"
40+
"sha512=4ae1ba318949ec9db8b87bc8072632a02f0e4003a95ab21e474f5c34c3b5bde867b0194a2d0ea7d9fc4580c70a30ca39287d33a8c134acc7611902f79c7b7ce8"
41+
]
42+
}
43+
x-commit-hash: "927088ffadce153306a36cef4d0fed52609208f6"
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
opam-version: "2.0"
2+
synopsis: "Lwt-based helpers for Alcotest"
3+
description: "Lwt-based helpers for Alcotest"
4+
maintainer: ["[email protected]"]
5+
authors: ["Thomas Gazagnaire"]
6+
license: "ISC"
7+
homepage: "https://github.com/mirage/alcotest"
8+
doc: "https://mirage.github.io/alcotest"
9+
bug-reports: "https://github.com/mirage/alcotest/issues"
10+
depends: [
11+
"dune" {>= "3.0"}
12+
"re" {with-test}
13+
"cmdliner" {with-test & >= "1.1.0"}
14+
"fmt"
15+
"ocaml" {>= "4.05.0"}
16+
"alcotest" {= version}
17+
"lwt"
18+
"logs"
19+
"odoc" {with-doc}
20+
]
21+
build: [
22+
["dune" "subst"] {dev}
23+
[
24+
"dune"
25+
"build"
26+
"-p"
27+
name
28+
"-j"
29+
jobs
30+
"@install"
31+
"@runtest" {with-test}
32+
"@doc" {with-doc}
33+
]
34+
]
35+
dev-repo: "git+https://github.com/mirage/alcotest.git"
36+
url {
37+
src:
38+
"https://github.com/mirage/alcotest/releases/download/1.7.0/alcotest-1.7.0.tbz"
39+
checksum: [
40+
"sha256=812bacdb34b45e88995e07d7306bdab2f72479ef1996637f1d5d1f41667902df"
41+
"sha512=4ae1ba318949ec9db8b87bc8072632a02f0e4003a95ab21e474f5c34c3b5bde867b0194a2d0ea7d9fc4580c70a30ca39287d33a8c134acc7611902f79c7b7ce8"
42+
]
43+
}
44+
x-commit-hash: "927088ffadce153306a36cef4d0fed52609208f6"
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
opam-version: "2.0"
2+
synopsis: "Mirage implementation for Alcotest"
3+
description: "Mirage implementation for Alcotest"
4+
maintainer: ["[email protected]"]
5+
authors: ["Thomas Gazagnaire"]
6+
license: "ISC"
7+
homepage: "https://github.com/mirage/alcotest"
8+
doc: "https://mirage.github.io/alcotest"
9+
bug-reports: "https://github.com/mirage/alcotest/issues"
10+
depends: [
11+
"dune" {>= "3.0"}
12+
"re" {with-test}
13+
"cmdliner" {with-test & >= "1.1.0"}
14+
"fmt"
15+
"ocaml" {>= "4.05.0"}
16+
"alcotest" {= version}
17+
"mirage-clock" {>= "2.0.0"}
18+
"duration"
19+
"lwt"
20+
"logs"
21+
"odoc" {with-doc}
22+
]
23+
build: [
24+
["dune" "subst"] {dev}
25+
[
26+
"dune"
27+
"build"
28+
"-p"
29+
name
30+
"-j"
31+
jobs
32+
"@install"
33+
"@runtest" {with-test}
34+
"@doc" {with-doc}
35+
]
36+
]
37+
dev-repo: "git+https://github.com/mirage/alcotest.git"
38+
url {
39+
src:
40+
"https://github.com/mirage/alcotest/releases/download/1.7.0/alcotest-1.7.0.tbz"
41+
checksum: [
42+
"sha256=812bacdb34b45e88995e07d7306bdab2f72479ef1996637f1d5d1f41667902df"
43+
"sha512=4ae1ba318949ec9db8b87bc8072632a02f0e4003a95ab21e474f5c34c3b5bde867b0194a2d0ea7d9fc4580c70a30ca39287d33a8c134acc7611902f79c7b7ce8"
44+
]
45+
}
46+
x-commit-hash: "927088ffadce153306a36cef4d0fed52609208f6"
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
opam-version: "2.0"
2+
synopsis: "Alcotest is a lightweight and colourful test framework"
3+
description: """
4+
Alcotest exposes simple interface to perform unit tests. It exposes
5+
a simple TESTABLE module type, a check function to assert test
6+
predicates and a run function to perform a list of unit -> unit
7+
test callbacks.
8+
9+
Alcotest provides a quiet and colorful output where only faulty runs
10+
are fully displayed at the end of the run (with the full logs ready to
11+
inspect), with a simple (yet expressive) query language to select the
12+
tests to run.
13+
"""
14+
maintainer: ["[email protected]"]
15+
authors: ["Thomas Gazagnaire"]
16+
license: "ISC"
17+
homepage: "https://github.com/mirage/alcotest"
18+
doc: "https://mirage.github.io/alcotest"
19+
bug-reports: "https://github.com/mirage/alcotest/issues"
20+
depends: [
21+
"dune" {>= "3.0"}
22+
"ocaml" {>= "4.05.0"}
23+
"fmt" {>= "0.8.7"}
24+
"astring"
25+
"cmdliner" {>= "1.1.0"}
26+
"re" {>= "1.7.2"}
27+
"stdlib-shims"
28+
"uutf" {>= "1.0.1"}
29+
"ocaml-syntax-shims"
30+
"odoc" {with-doc}
31+
]
32+
conflicts: [
33+
"result" {< "1.5"}
34+
]
35+
build: [
36+
["dune" "subst"] {dev}
37+
[
38+
"dune"
39+
"build"
40+
"-p"
41+
name
42+
"-j"
43+
jobs
44+
"@install"
45+
"@runtest" {with-test & arch != "arm32" & arch != "x86_32"
46+
& arch != "s390x" & arch != "ppc64"}
47+
"@doc" {with-doc}
48+
]
49+
]
50+
dev-repo: "git+https://github.com/mirage/alcotest.git"
51+
url {
52+
src:
53+
"https://github.com/mirage/alcotest/releases/download/1.7.0/alcotest-1.7.0.tbz"
54+
checksum: [
55+
"sha256=812bacdb34b45e88995e07d7306bdab2f72479ef1996637f1d5d1f41667902df"
56+
"sha512=4ae1ba318949ec9db8b87bc8072632a02f0e4003a95ab21e474f5c34c3b5bde867b0194a2d0ea7d9fc4580c70a30ca39287d33a8c134acc7611902f79c7b7ce8"
57+
]
58+
}
59+
x-commit-hash: "927088ffadce153306a36cef4d0fed52609208f6"

0 commit comments

Comments
 (0)