-
Notifications
You must be signed in to change notification settings - Fork 16
/
codecov.yml
23 lines (23 loc) · 989 Bytes
/
codecov.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
ignore:
- "client/ts/src/manifest/accounts"
- "client/ts/src/manifest/errors"
# Do not need to cover the direct instructions since users are expected to use
# the wrapper.
- "client/ts/src/manifest/instructions/BatchUpdate.ts"
- "client/ts/src/manifest/instructions/CancelOrder.ts"
- "client/ts/src/manifest/instructions/ClaimSeat.ts"
- "client/ts/src/manifest/instructions/Deposit.ts"
- "client/ts/src/manifest/instructions/Expand.ts"
- "client/ts/src/manifest/instructions/PlaceOrder.ts"
- "client/ts/src/manifest/instructions/Withdraw.ts"
# Infinite loop and variability in other messages makes it difficult to cover fill feed
- "client/ts/src/fillFeed.ts"
# Not hermetic
- "client/ts/src/utils/solana.ts"
# Do not run the demo client in tests
- "client/ts/tests"
- "client/ts/demo/main.ts"
# Dont check the ui wrapper because that is not core functionality.
- "programs/ui-wrapper"
- "client/ts/src/ui_wrapper"
- "client/ts/src/uiWrapperObj"