File tree 3 files changed +4
-11
lines changed
plutus-ledger-api/test/Spec
3 files changed +4
-11
lines changed Original file line number Diff line number Diff line change 29
29
packages . plutus-executables . doCoverage = true ;
30
30
packages . plutus-tx-test-util . doCoverage = true ;
31
31
packages . plutus-ledger-api . doCoverage = true ;
32
+ # packages.plutus-tx.doCoverage = true;
33
+
32
34
packages . plutus-core . configureFlags = [ "--ghc-option=-D__HPC_ENABLED__" ] ;
33
35
# plutus-benchmark
34
- # plutus-conformance
35
- # plutus-core
36
- # plutus-executables
37
- # plutus-ledger-api
38
36
# plutus-metatheory
39
37
# plutus-tx
40
38
# plutus-tx-plugin
41
- # plutus-tx-test-util
42
39
# docusaurus-examples
43
40
} ] ;
44
41
ghc810 . compiler-nix-name = "ghc810" ;
Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ import Data.Maybe (fromJust)
32
32
import Data.Set qualified as Set
33
33
import NoThunks.Class
34
34
import Test.Tasty
35
- import Test.Tasty.ExpectedFailure (ignoreTest )
36
35
import Test.Tasty.Extras (ignoreTestIfHpcEnabled )
37
36
38
37
{- Note [Direct UPLC code]
@@ -132,10 +131,7 @@ tests = testGroup "eval"
132
131
[ testAPI
133
132
-- , testUnlifting
134
133
, evaluationContextCacheIsComplete
135
- #ifdef __USING_HPC__
136
- , ignoreTest evaluationContextNoThunks
137
- #else
134
+ , ignoreTestIfHpcEnabled evaluationContextNoThunks
138
135
, evaluationContextNoThunks
139
- #endif
140
136
]
141
137
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ tests = testGroup "eval"
132
132
[ testAPI
133
133
-- , testUnlifting
134
134
, evaluationContextCacheIsComplete
135
- , ignoreTestIfHpcFlagDefined evaluationContextNoThunks
135
+ , ignoreTestIfHpcEnabled evaluationContextNoThunks
136
136
, evaluationContextNoThunks
137
137
]
138
138
You can’t perform that action at this time.
0 commit comments