Skip to content

Commit

Permalink
Disable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jimbo4350 committed Sep 10, 2024
1 parent c3792b6 commit a7573d3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ hprop_plutus_v3 = integrationWorkspace "all-plutus-script-purposes" $ \tempAbsBa

-- 2. Successfully spend conway spending script
txinCollateral <- findLargestUtxoForPaymentKey epochStateView sbe wallet1
plutusScriptTxIn <- fmap fst . retryUntilJustM epochStateView (WaitForBlocks 6) $
plutusScriptTxIn <- fmap fst . retryUntilJustM epochStateView (WaitForBlocks 100) $
findLargestUtxoWithAddress epochStateView sbe $ Text.pack plutusSpendingScriptAddr

let spendScriptUTxOTxBody = work </> "spend-script-utxo-tx-body"
Expand Down
20 changes: 10 additions & 10 deletions cardano-testnet/test/cardano-testnet-test/cardano-testnet-test.hs
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,18 @@ import qualified Cardano.Crypto.Init as Crypto
import qualified Cardano.Testnet.Test.Cli.LeadershipSchedule
import qualified Cardano.Testnet.Test.Cli.StakeSnapshot
import qualified Cardano.Testnet.Test.Cli.Transaction
import qualified Cardano.Testnet.Test.Cli.Conway.Plutus
import qualified Cardano.Testnet.Test.Cli.KesPeriodInfo
import qualified Cardano.Testnet.Test.Cli.Query
import qualified Cardano.Testnet.Test.Cli.QuerySlotNumber
import qualified Cardano.Testnet.Test.FoldEpochState
import qualified Cardano.Testnet.Test.Gov.CommitteeAddNew as Gov
import qualified Cardano.Testnet.Test.Gov.DRepDeposit as Gov
import qualified Cardano.Testnet.Test.Gov.DRepRetirement as Gov
import qualified Cardano.Testnet.Test.Gov.GovActionTimeout as Gov
import qualified Cardano.Testnet.Test.Gov.NoConfidence as Gov
import qualified Cardano.Testnet.Test.Gov.PParamChangeFailsSPO as Gov
import qualified Cardano.Testnet.Test.Gov.ProposeNewConstitution as Gov
import qualified Cardano.Testnet.Test.Gov.ProposeNewConstitutionSPO as Gov
import qualified Cardano.Testnet.Test.Gov.TreasuryDonation as Gov
import qualified Cardano.Testnet.Test.Gov.TreasuryGrowth as Gov
import qualified Cardano.Testnet.Test.Gov.TreasuryWithdrawal as Gov
import qualified Cardano.Testnet.Test.Node.Shutdown
import qualified Cardano.Testnet.Test.SanityCheck as LedgerEvents
import qualified Cardano.Testnet.Test.SubmitApi.Transaction
Expand Down Expand Up @@ -53,23 +49,27 @@ tests = do
-- TODO: Replace foldBlocks with checkConditionResult
, T.testGroup "Governance"
[ ignoreOnMacAndWindows "Committee Add New" Gov.hprop_constitutional_committee_add_new
, ignoreOnMacAndWindows "Committee Motion Of No Confidence" Gov.hprop_gov_no_confidence
-- Committee Motion Of No Confidence - disabled in cardano-node-9.2
-- , ignoreOnMacAndWindows "Committee Motion Of No Confidence" Gov.hprop_gov_no_confidence
-- TODO: Disabled because proposals for parameter changes are not working
-- , ignoreOnWindows "DRep Activity" Gov.hprop_check_drep_activity
-- , ignoreOnWindows "Predefined Abstain DRep" Gov.hprop_check_predefined_abstain_drep
, ignoreOnWindows "DRep Deposits" Gov.hprop_ledger_events_drep_deposits
-- , ignoreOnWindows "Predefined Abstain DRep" Gov.hprop_check_predefined_abstain_drep
-- DRep Deposits flakey - disabled in cardano-node-9.2
-- , ignoreOnWindows "DRep Deposits" Gov.hprop_ledger_events_drep_deposits
, ignoreOnWindows "DRep Retirement" Gov.hprop_drep_retirement
, ignoreOnMacAndWindows "Propose And Ratify New Constitution" Gov.hprop_ledger_events_propose_new_constitution
, ignoreOnWindows "Propose New Constitution SPO" Gov.hprop_ledger_events_propose_new_constitution_spo
, ignoreOnWindows "Gov Action Timeout" Gov.hprop_check_gov_action_timeout
, ignoreOnWindows "Treasury Donation" Gov.hprop_ledger_events_treasury_donation
, ignoreOnWindows "Treasury Withdrawal" Gov.hprop_ledger_events_treasury_withdrawal
-- Treasury Withdrawal flakey - disabled in cardano-node-9.2
-- , ignoreOnMacAndWindows "Treasury Withdrawal" Gov.hprop_ledger_events_treasury_withdrawal
, ignoreOnWindows "PParam change fails for SPO" Gov.hprop_check_pparam_fails_spo
-- FIXME Those tests are flaky
-- , ignoreOnWindows "InfoAction" LedgerEvents.hprop_ledger_events_info_action
]
, T.testGroup "Plutus"
[ ignoreOnWindows "PlutusV3" Cardano.Testnet.Test.Cli.Conway.Plutus.hprop_plutus_v3]
-- Plutus flakey - disabled in cardano-node-9.2
-- , T.testGroup "Plutus"
-- [ ignoreOnWindows "PlutusV3" Cardano.Testnet.Test.Cli.Conway.Plutus.hprop_plutus_v3]
]
, T.testGroup "CLI"
[ ignoreOnWindows "Shutdown" Cardano.Testnet.Test.Node.Shutdown.hprop_shutdown
Expand Down

0 comments on commit a7573d3

Please sign in to comment.