forked from kaspanet/kaspad
-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix for all auto tests, build tests, code coverage and full GitHub workflow integration #41
Merged
lemois-1337
merged 23 commits into
karlsen-network:master
from
lemois-1337:2024-fixes-tests-and-github-workflows
Feb 16, 2024
Merged
Fix for all auto tests, build tests, code coverage and full GitHub workflow integration #41
lemois-1337
merged 23 commits into
karlsen-network:master
from
lemois-1337:2024-fixes-tests-and-github-workflows
Feb 16, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…HashECDSA' test cases
* Test16IncomingConnections * TestIntegrationBasicSync * TestIBD * TestIBDWithPruning * TestBoundedMergeDepth * TestVirtualSelectedParentChain * TestTxRelay * TestUTXOIndex * TestVirtualSelectedParentBlueScoreAndVirtualDAAScore
* Added code coverage, build passing and test coverage badges. * Added full description about smart contract design and integration proposal. * Added FishHash testnet documentation
Welcome to Codecov 🎉Once merged to your default branch, Codecov will compare your coverage reports and display the results in this comment. Thanks for integrating Codecov - We've got you covered ☂️ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull requests will fix all included auto tests and add complete support for the Karlsen Network. It is very important to highlight that this is the first step in a long walk to start implementing side-chain for smart contracts. Code coverage details are at:
https://app.codecov.io/gh/karlsen-network/karlsend
We've extended the test suite to run build and auto tests on Windows as well beside Linux and macOS. Go version in GitHub workflows has been updated from
v1.19
to more recentv1.21
which is being used already in deploy.yaml. Github actions have been updated fromv2
tov4
. List of fixed test cases:TestCalcDeflationaryPeriodBlockSubsidy
- it has been modified to support our1.4
reduction factorTestAddresses
TestDecodeAddressErrorConditions
TestBlockWindow
TestDifficulty
TestPruning
TestCalculateSignatureHashSchnorr
TestCalculateSignatureHashECDSA
TestMatrix_HeavyHash
ExamplePayToAddrScript
ExampleExtractScriptPubKeyAddress
Test16IncomingConnections
TestIntegrationBasicSync
TestIBD
TestIBDWithPruning
TestBoundedMergeDepth
TestVirtualSelectedParentChain
TestTxRelay
TestUTXOIndex
TestVirtualSelectedParentBlueScoreAndVirtualDAAScore
TestGetHashrateString
List of stability tests fixed:
daa
karlsendsanity
mempool-limits
The build and stability test scripts have been modified to support local testing as well. The README.md includes details about future smart contract implementation and current running FishHash algorithm in
testnet-1
. It closes #40.