this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[new release] junit (3 packages) (2.2.0)

CHANGES:

- fix bug marking alcotest skipped tests as passed
- reraise exceptions to clean backtraces
- expose arguments of `Alcotest.run`
- increase dependency on alcotest to 1.8.0

+123
+41
packages/junit/junit.2.2.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Louis Roché <louis@louisroche.net>" 3 + authors: "Louis Roché <louis@louisroche.net>" 4 + homepage: "https://github.com/Khady/ocaml-junit" 5 + bug-reports: "https://github.com/Khady/ocaml-junit/issues" 6 + license: "LGPL-3.0-or-later WITH OCaml-LGPL-linking-exception" 7 + dev-repo: "git+https://github.com/Khady/ocaml-junit.git" 8 + doc: "https://khady.github.io/ocaml-junit/" 9 + tags: ["junit" "jenkins"] 10 + depends: [ 11 + "dune" {>= "3.0"} 12 + "ptime" 13 + "tyxml" {>= "4.0.0"} 14 + "odoc" {with-doc & >= "1.1.1"} 15 + "ocamlformat" {= "0.27.0" & with-dev-setup} 16 + ] 17 + build: [ 18 + ["dune" "subst"] {dev} 19 + [ 20 + "dune" 21 + "build" 22 + "-p" 23 + name 24 + "-j" 25 + jobs 26 + "@install" 27 + "@runtest" {with-test} 28 + "@doc" {with-doc} 29 + ] 30 + ] 31 + synopsis: "JUnit XML reports generation library" 32 + description: "JUnit XML reports generation library" 33 + url { 34 + src: 35 + "https://github.com/Khady/ocaml-junit/releases/download/2.2.0/junit-2.2.0.tbz" 36 + checksum: [ 37 + "sha256=d0ab1b08e7bb56d3955139e8ffd8cf0748f1b952af0072c9f9e8d914d531d90a" 38 + "sha512=f86944c8a5f21c7df6a4dead863c340ebd7114808422a0dd8819941356a6c2a9fbe1e823cead11ff1c0cf6207eeebbbc8e62096a4f278a72f7c05099deef93fb" 39 + ] 40 + } 41 + x-commit-hash: "c72f1f3bc9add874a8c1594b0b1cf9d7dac448b1"
+41
packages/junit_alcotest/junit_alcotest.2.2.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Louis Roché <louis@louisroche.net>" 3 + authors: ["Louis Roché <louis@louisroche.net>"] 4 + homepage: "https://github.com/Khady/ocaml-junit" 5 + bug-reports: "https://github.com/Khady/ocaml-junit/issues" 6 + license: "LGPL-3.0-or-later WITH OCaml-LGPL-linking-exception" 7 + dev-repo: "git+https://github.com/Khady/ocaml-junit.git" 8 + doc: "https://khady.github.io/ocaml-junit/" 9 + tags: ["junit" "jenkins" "alcotest"] 10 + depends: [ 11 + "dune" {>= "3.0"} 12 + "odoc" {with-doc & >= "1.1.1"} 13 + "alcotest" {>= "1.8.0"} 14 + "junit" {= version} 15 + "ocamlformat" {= "0.27.0" & with-dev-setup} 16 + ] 17 + build: [ 18 + ["dune" "subst"] {dev} 19 + [ 20 + "dune" 21 + "build" 22 + "-p" 23 + name 24 + "-j" 25 + jobs 26 + "@install" 27 + "@runtest" {with-test} 28 + "@doc" {with-doc} 29 + ] 30 + ] 31 + synopsis: "JUnit XML reports generation for alcotest tests" 32 + description: "JUnit XML reports generation for alcotest tests" 33 + url { 34 + src: 35 + "https://github.com/Khady/ocaml-junit/releases/download/2.2.0/junit-2.2.0.tbz" 36 + checksum: [ 37 + "sha256=d0ab1b08e7bb56d3955139e8ffd8cf0748f1b952af0072c9f9e8d914d531d90a" 38 + "sha512=f86944c8a5f21c7df6a4dead863c340ebd7114808422a0dd8819941356a6c2a9fbe1e823cead11ff1c0cf6207eeebbbc8e62096a4f278a72f7c05099deef93fb" 39 + ] 40 + } 41 + x-commit-hash: "c72f1f3bc9add874a8c1594b0b1cf9d7dac448b1"
+41
packages/junit_ounit/junit_ounit.2.2.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Louis Roché <louis@louisroche.net>" 3 + authors: ["Louis Roché <louis@louisroche.net>" "Simon Cruanes <simon.cruanes.2007@m4x.org>"] 4 + homepage: "https://github.com/Khady/ocaml-junit" 5 + bug-reports: "https://github.com/Khady/ocaml-junit/issues" 6 + license: "LGPL-3.0-or-later WITH OCaml-LGPL-linking-exception" 7 + dev-repo: "git+https://github.com/Khady/ocaml-junit.git" 8 + doc: "https://khady.github.io/ocaml-junit/" 9 + tags: ["junit" "jenkins" "ounit"] 10 + depends: [ 11 + "dune" {>= "3.0"} 12 + "odoc" {with-doc & >= "1.1.1"} 13 + "ounit2" 14 + "junit" {= version} 15 + "ocamlformat" {= "0.27.0" & with-dev-setup} 16 + ] 17 + build: [ 18 + ["dune" "subst"] {dev} 19 + [ 20 + "dune" 21 + "build" 22 + "-p" 23 + name 24 + "-j" 25 + jobs 26 + "@install" 27 + "@runtest" {with-test} 28 + "@doc" {with-doc} 29 + ] 30 + ] 31 + synopsis: "JUnit XML reports generation for OUnit tests" 32 + description: "JUnit XML reports generation for OUnit tests" 33 + url { 34 + src: 35 + "https://github.com/Khady/ocaml-junit/releases/download/2.2.0/junit-2.2.0.tbz" 36 + checksum: [ 37 + "sha256=d0ab1b08e7bb56d3955139e8ffd8cf0748f1b952af0072c9f9e8d914d531d90a" 38 + "sha512=f86944c8a5f21c7df6a4dead863c340ebd7114808422a0dd8819941356a6c2a9fbe1e823cead11ff1c0cf6207eeebbbc8e62096a4f278a72f7c05099deef93fb" 39 + ] 40 + } 41 + x-commit-hash: "c72f1f3bc9add874a8c1594b0b1cf9d7dac448b1"