-
Notifications
You must be signed in to change notification settings - Fork 48
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
Add test rust command #2030
Add test rust command #2030
Conversation
Please not merge it right now wait until we clean up everything related to git |
is_positional=True, | ||
), | ||
] | ||
|
||
async def run(self, args: Namespace): | ||
if args.path is None: | ||
raise ProtostarException("No tests provided") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is_positional=True, | |
), | |
] | |
async def run(self, args: Namespace): | |
if args.path is None: | |
raise ProtostarException("No tests provided") | |
is_positional=True, | |
is_required=True, | |
), | |
] | |
async def run(self, args: Namespace): |
@@ -0,0 +1,3 @@ | |||
{ | |||
"ignore": ["./starknet_in_rust/", "./blockifier/"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we plan on using starknet in rust?
I think CLI is much closer to being merge than declare in rust right now. I don't think we should merge this one. Having additional bindings to python introduces additonal complexity and I prefer we avoided it. |
Is this PR needed anymore or can we close it? |
I'm going to close it once I come up with a replacement, I don't think it trashes the PR list that much and I use it as a ref so it's handy to have it as an open PR for me. |
Checklist
Cairo PR software-mansion-labs/cairo#78