-
-
Notifications
You must be signed in to change notification settings - Fork 1
Implements environment route tests #37
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
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
4f4cb40
implements environment route tests
GabrielBarberini 9d8ab71
Update Makefile
GabrielBarberini d726d28
Update Makefile
GabrielBarberini 9fd33f3
apply formatting and updates makefile
GabrielBarberini a2bfdcc
Update pylint.yml
GabrielBarberini 4be60a6
extends route tests
GabrielBarberini fc4de13
apply make format
GabrielBarberini 12bf7d3
apply black before other formats
GabrielBarberini 3cfd570
lower python version in ruff rules
GabrielBarberini 1d60ae4
improves env route test readability
GabrielBarberini File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,7 @@ | ||
| [build-system] | ||
| requires = ["setuptools", "setuptools_scm"] | ||
| build-backend = "setuptools.build_meta" | ||
|
|
||
| [tool.setuptools.dynamic] | ||
| dependencies = {file = ["requirements.txt"]} | ||
|
|
||
| [project] | ||
| name = "Infinity-API" | ||
| version = "2.2.0" | ||
| version = "2.3.0" | ||
| description = "RESTFULL open API for rocketpy" | ||
| dynamic = ["dependencies"] | ||
| requires-python = ">=3.12" | ||
| authors = [ | ||
| {name = "Gabriel Barberini", email = "[email protected]"} | ||
|
|
@@ -21,7 +13,7 @@ maintainers = [ | |
| readme = "README.md" | ||
| keywords = ["rocketpy", "API", "simulation", "rocket", "flight"] | ||
| classifiers = [ | ||
| "Development Status :: Alpha", | ||
| "Development Status :: Production", | ||
| "Programming Language :: Python" | ||
| ] | ||
|
|
||
|
|
@@ -52,3 +44,14 @@ disable = """ | |
| raise-missing-from, | ||
| too-many-instance-attributes, | ||
| """ | ||
|
|
||
| [tool.ruff] | ||
| line-length = 79 | ||
|
Member
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. 79? I usually see 88 instead
Collaborator
Author
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. For the API development we set PEP-8 as a north |
||
| target-version = "py312" | ||
|
|
||
| [tool.ruff.lint] | ||
| select = ["E", "F", "N", "Q"] | ||
| ignore = ["N815", "E501", "Q000", "E402"] | ||
| fixable = [ | ||
| "F401", | ||
| ] | ||
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| flake8 | ||
| pylint | ||
| ruff |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.