Skip to content

Commit 129a735

Browse files
committed
Remove old integration tests
1 parent 7d17185 commit 129a735

16 files changed

+0
-2320
lines changed

default.nix

-11
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
# - haskellPackages.ghc -- the compiler
1111
# - cardanoPackages -- just cardano packages
1212
#
13-
# - tests -- integration tests and linters suitable for running in a
14-
# sandboxed build environment
15-
#
1613
# - acceptanceTests -- tests which need network access to connect to
1714
# the actual relay nodes.
1815
#
@@ -171,7 +168,6 @@ let
171168
shellcheck = self.callPackage ./scripts/test/shellcheck.nix { inherit src; };
172169
hlint = self.callPackage ./scripts/test/hlint.nix { inherit src; };
173170
stylishHaskell = self.callPackage ./scripts/test/stylish.nix { inherit (self.haskellPackages) stylish-haskell; inherit src; };
174-
walletIntegration = self.callPackage ./scripts/test/wallet/integration/build-test.nix { };
175171
swaggerSchemaValidation = self.callPackage ./scripts/test/wallet/swaggerSchemaValidation.nix {
176172
inherit (self.cardanoPackages) cardano-wallet;
177173
};
@@ -180,13 +176,6 @@ let
180176
};
181177
};
182178

183-
walletIntegrationTests = self.callPackage ./scripts/test/wallet/integration {
184-
inherit (self.cardanoPackages)
185-
cardano-sl-tools
186-
cardano-wallet;
187-
inherit useStackBinaries;
188-
};
189-
190179
# Currently the only acceptance tests here are to sync the wallet
191180
# against mainnet and testnet.
192181
acceptanceTests = let

scripts/test/wallet/integration/build-test.nix

-18
This file was deleted.

scripts/test/wallet/integration/default.nix

-46
This file was deleted.

wallet/cardano-wallet.cabal

-82
Original file line numberDiff line numberDiff line change
@@ -335,88 +335,6 @@ executable cardano-generate-swagger-file
335335
main-is:
336336
Main.hs
337337

338-
339-
executable wal-integr-test
340-
default-language:
341-
Haskell2010
342-
default-extensions:
343-
DataKinds
344-
DefaultSignatures
345-
FlexibleContexts
346-
FlexibleInstances
347-
MonadFailDesugaring
348-
MultiParamTypeClasses
349-
NoImplicitPrelude
350-
OverloadedStrings
351-
RecordWildCards
352-
ScopedTypeVariables
353-
ScopedTypeVariables
354-
TemplateHaskell
355-
TypeApplications
356-
TypeFamilies
357-
TypeOperators
358-
TypeOperators
359-
UndecidableInstances
360-
ghc-options:
361-
-threaded -rtsopts
362-
-Wall
363-
-O2
364-
365-
build-depends:
366-
base
367-
, aeson
368-
, aeson-diff
369-
, aeson-pretty
370-
, async
371-
, bytestring
372-
, cardano-sl
373-
, cardano-sl-chain
374-
, cardano-sl-core
375-
, cardano-sl-crypto
376-
, cardano-sl-mnemonic
377-
, cardano-sl-node
378-
, cardano-sl-util
379-
, cardano-wallet
380-
, containers
381-
, exceptions
382-
, formatting
383-
, formatting
384-
, hspec
385-
, http-client
386-
, http-types
387-
, lens
388-
, memory
389-
, mtl
390-
, optparse-applicative
391-
, pretty-show
392-
, QuickCheck
393-
, serokell-util
394-
, servant
395-
, servant-client
396-
, servant-quickcheck
397-
, servant-server
398-
, text
399-
, universum
400-
, x509-store
401-
402-
hs-source-dirs:
403-
integration
404-
main-is:
405-
Main.hs
406-
other-modules:
407-
AccountSpecs
408-
AddressSpecs
409-
CLI
410-
Error
411-
QuickCheckSpecs
412-
RandomStateWalk
413-
SetupTestEnv
414-
TransactionSpecs
415-
Types
416-
Util
417-
WalletSpecs
418-
419-
420338
test-suite unit
421339
default-language:
422340
Haskell2010

wallet/integration/AccountSpecs.hs

-202
This file was deleted.

0 commit comments

Comments
 (0)