-
Notifications
You must be signed in to change notification settings - Fork 223
/
Copy pathcardano-wallet-e2e.cabal
132 lines (126 loc) · 3.51 KB
/
cardano-wallet-e2e.cabal
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
cabal-version: 3.0
name: cardano-wallet-e2e
version: 2024.9.3
synopsis: End-to-end test suite for the cardano-wallet.
description: Please see README.md
homepage: https://github.com/input-output-hk/cardano-wallet
license: Apache-2.0
author: Cardano Foundation (High Assurance Lab)
maintainer: [email protected]
copyright: 2018-2022 IOHK, 2023 Cardano Foundation
category: Testing
build-type: Simple
common options
default-language: Haskell2010
default-extensions:
BlockArguments
DataKinds
DeriveAnyClass
DeriveGeneric
DerivingStrategies
FlexibleContexts
FlexibleInstances
GADTs
GeneralizedNewtypeDeriving
KindSignatures
LambdaCase
MultiParamTypeClasses
NamedFieldPuns
NumericUnderscores
OverloadedStrings
PolyKinds
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeApplications
TypeFamilies
TypeOperators
ghc-options:
-O2 -Wall -Wincomplete-record-updates -Wincomplete-uni-patterns
-Wmissing-deriving-strategies -Wunused-foralls -Wunused-foralls
-fprint-explicit-foralls -fprint-explicit-kinds
-fprint-potential-instances -Wcompat -Widentities
-Werror=incomplete-patterns -Wredundant-constraints
-Wpartial-fields -Wtabs -Wmissing-local-signatures -fhelpful-errors
-fprint-expanded-synonyms -fwarn-unused-do-bind
-fwarn-incomplete-uni-patterns -freverse-errors
mixins:
base hiding (Prelude),
relude (Relude as Prelude, Relude.Container.One),
relude
library
import: options
hs-source-dirs: src
build-depends:
, aeson
, attoparsec-aeson
, base
, base58-bytestring
, cardano-addresses
, cardano-crypto
, cardano-wallet-client
, cardano-wallet-primitive
, effectful-core
, effectful-th
, extra
, faucet
, http-client
, http-types
, local-cluster
, optparse-applicative
, pathtype
, random
, relude
, resourcet
, retry
, sydtest
, tagged
, text
, time
, timespan
, typed-process
exposed-modules:
Cardano.Wallet.Spec
Cardano.Wallet.Spec.Options
Cardano.Wallet.Spec.Data.AdaBalance
Cardano.Wallet.Spec.Data.Network.Info
Cardano.Wallet.Spec.Data.Network.NodeStatus
Cardano.Wallet.Spec.Data.TestNetwork
Cardano.Wallet.Spec.Data.Wallet
Cardano.Wallet.Spec.Data.WalletId
Cardano.Wallet.Spec.Data.WalletName
Cardano.Wallet.Spec.Effect.Assert
Cardano.Wallet.Spec.Effect.Faucet
Cardano.Wallet.Spec.Effect.Http
Cardano.Wallet.Spec.Effect.Query
Cardano.Wallet.Spec.Effect.Random
Cardano.Wallet.Spec.Effect.Timeout
Cardano.Wallet.Spec.Effect.Trace
Cardano.Wallet.Spec.Interpreters.Config
Cardano.Wallet.Spec.Interpreters.Effectfully
Cardano.Wallet.Spec.Interpreters.Pure
Cardano.Wallet.Spec.Network.Configured
Cardano.Wallet.Spec.Network.Local
Cardano.Wallet.Spec.Network.Manual
Cardano.Wallet.Spec.Network.Node.Cli
Cardano.Wallet.Spec.Network.Preprod
Cardano.Wallet.Spec.Network.Wait
Cardano.Wallet.Spec.Network.Wallet.Cli
Cardano.Wallet.Spec.Stories.Language
Cardano.Wallet.Spec.Stories.Wallet
Cardano.Wallet.Spec.TimeoutSpec
executable wallet-e2e
import: options
hs-source-dirs: exe
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
, base
, cardano-wallet-e2e
, optparse-applicative
, relude
, sydtest
, tagged
, with-utf8