Skip to content

Commit 3f2dfb5

Browse files
committed
wip
1 parent 80141e8 commit 3f2dfb5

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

nix/project.nix

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,13 @@ let
2929
packages.plutus-executables.doCoverage = true;
3030
packages.plutus-tx-test-util.doCoverage = true;
3131
packages.plutus-ledger-api.doCoverage = true;
32+
# packages.plutus-tx.doCoverage = true;
33+
3234
packages.plutus-core.configureFlags = [ "--ghc-option=-D__HPC_ENABLED__" ];
3335
# plutus-benchmark
34-
# plutus-conformance
35-
# plutus-core
36-
# plutus-executables
37-
# plutus-ledger-api
3836
# plutus-metatheory
3937
# plutus-tx
4038
# plutus-tx-plugin
41-
# plutus-tx-test-util
4239
# docusaurus-examples
4340
}];
4441
ghc810.compiler-nix-name = "ghc810";

plutus-ledger-api/test/Spec/Data/Eval.hs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ import Data.Maybe (fromJust)
3232
import Data.Set qualified as Set
3333
import NoThunks.Class
3434
import Test.Tasty
35-
import Test.Tasty.ExpectedFailure (ignoreTest)
3635
import Test.Tasty.Extras (ignoreTestIfHpcEnabled)
3736

3837
{- Note [Direct UPLC code]
@@ -132,10 +131,7 @@ tests = testGroup "eval"
132131
[ testAPI
133132
-- , testUnlifting
134133
, evaluationContextCacheIsComplete
135-
#ifdef __USING_HPC__
136-
, ignoreTest evaluationContextNoThunks
137-
#else
134+
, ignoreTestIfHpcEnabled evaluationContextNoThunks
138135
, evaluationContextNoThunks
139-
#endif
140136
]
141137

plutus-ledger-api/test/Spec/Eval.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ tests = testGroup "eval"
132132
[ testAPI
133133
-- , testUnlifting
134134
, evaluationContextCacheIsComplete
135-
, ignoreTestIfHpcFlagDefined evaluationContextNoThunks
135+
, ignoreTestIfHpcEnabled evaluationContextNoThunks
136136
, evaluationContextNoThunks
137137
]
138138

0 commit comments

Comments
 (0)