-
Notifications
You must be signed in to change notification settings - Fork 58
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 ecosystem.json
to include project in Qiskit ecosystem
#43
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,23 @@ | ||||||
{ | ||||||
"dependencies_files": [ | ||||||
"requirements.txt", | ||||||
"requirements-dev.txt" | ||||||
], | ||||||
"extra_dependencies": [ | ||||||
"pytest" | ||||||
], | ||||||
"language": { | ||||||
"name": "python", | ||||||
"versions": ["3.9"] | ||||||
}, | ||||||
"tests_command": [ | ||||||
"pytest" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Couldn't we just defer this to the Makefile we have already? So
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just keep in mind in Ecosystem we launch it inside a tox env, so keep it as simple and basic as possible :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You'll need to add : "debian_dependencies": [
"make"
], The feature is actually in review process |
||||||
], | ||||||
"styles_check_command": [ | ||||||
"pylint -rn src tests" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Likewise this could maybe be
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just keep in mind in Ecosystem we launch it inside a tox env, so keep it as simple and basic as possible :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You'll need to add : "debian_dependencies": [
"make"
], The feature is actually in review process |
||||||
], | ||||||
"coverages_check_command": [ | ||||||
"coverage3 run -m pytest", | ||||||
"coverage3 report --fail-under=80" | ||||||
] | ||||||
} |
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.
Since the test dependencies are in
requirements-dev.txt
which is in the dependencies above, maybe we don't need this?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.
Just check it, what do you mean ?
I even don't see pytest in your 2 files