Skip to content

Commit

Permalink
Add base64 to with-tests
Browse files Browse the repository at this point in the history
- Pgx_async, Pgx_unix, and Pgx_lwt need base64
- Pgx doesn't actually use base64
- Pgx_lwt doesn't have tests
  • Loading branch information
brendanlong committed May 8, 2020
1 parent 8ed3fc3 commit e7204bc
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 10 deletions.
20 changes: 12 additions & 8 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@
(and
:with-test
(>= 1.0.0)))
(base64
(and
:with-test
(>= 3.0.0)))
(bisect_ppx
(and
:dev
Expand Down Expand Up @@ -64,6 +60,10 @@
(and
:with-test
(>= 1.0.0)))
(base64
(and
:with-test
(>= 3.0.0)))
(ocaml
(>= 4.08))
(pgx
Expand All @@ -82,6 +82,10 @@
(>= "v0.13.0"))
(async_unix
(>= "v0.13.0"))
(base64
(and
:with-test
(>= 3.0.0)))
(ocaml
(>= 4.08))
(pgx
Expand All @@ -94,10 +98,6 @@
(synopsis "Pgx using Lwt for IO")
(description "Pgx using Lwt for IO")
(depends
(alcotest-lwt
(and
:with-test
(>= "1.0.0")))
lwt
logs
(ocaml
Expand All @@ -114,6 +114,10 @@
(and
:with-test
(>= "1.0.0")))
(base64
(and
:with-test
(>= 3.0.0)))
lwt
(ocaml
(>= 4.08))
Expand Down
1 change: 0 additions & 1 deletion pgx.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ doc: "https://arenadotio.github.io/pgx"
bug-reports: "https://github.com/arenadotio/pgx/issues"
depends: [
"alcotest" {with-test & >= "1.0.0"}
"base64" {with-test & >= "3.0.0"}
"bisect_ppx" {dev & >= "2.0.0"}
"dune" {>= "1.11"}
"hex"
Expand Down
1 change: 1 addition & 0 deletions pgx_async.opam
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ depends: [
"alcotest-async" {with-test & >= "1.0.0"}
"async_kernel" {>= "v0.13.0"}
"async_unix" {>= "v0.13.0"}
"base64" {with-test & >= "3.0.0"}
"ocaml" {>= "4.08"}
"pgx" {= version}
"pgx_value_core" {= version}
Expand Down
1 change: 0 additions & 1 deletion pgx_lwt.opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ doc: "https://arenadotio.github.io/pgx"
bug-reports: "https://github.com/arenadotio/pgx/issues"
depends: [
"dune" {>= "1.11"}
"alcotest-lwt" {with-test & >= "1.0.0"}
"lwt"
"logs"
"ocaml" {>= "4.08"}
Expand Down
1 change: 1 addition & 0 deletions pgx_lwt_unix.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ bug-reports: "https://github.com/arenadotio/pgx/issues"
depends: [
"dune" {>= "1.11"}
"alcotest-lwt" {with-test & >= "1.0.0"}
"base64" {with-test & >= "3.0.0"}
"lwt"
"ocaml" {>= "4.08"}
"pgx" {= version}
Expand Down
1 change: 1 addition & 0 deletions pgx_unix.opam
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ bug-reports: "https://github.com/arenadotio/pgx/issues"
depends: [
"dune" {>= "1.11"}
"alcotest" {with-test & >= "1.0.0"}
"base64" {with-test & >= "3.0.0"}
"ocaml" {>= "4.08"}
"pgx" {= version}
]
Expand Down

0 comments on commit e7204bc

Please sign in to comment.