-
-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #642 from RocketPy-Team/develop
MNT: Updates master for release `1.4.1`
- Loading branch information
Showing
113 changed files
with
6,668 additions
and
6,574 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Linters | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review] | ||
paths: | ||
- "**.py" | ||
- "**.ipynb" | ||
- ".github/**" | ||
- "pyproject.toml" | ||
- "requirements*" | ||
- ".pylintrc" | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ["3.9"] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install .[all] | ||
pip install .[tests] | ||
pip install pylint isort flake8 black | ||
- name: Run isort | ||
run: isort --check-only rocketpy/ tests/ docs/ --profile black | ||
- name: Run black | ||
uses: psf/black@stable | ||
with: | ||
options: "--check rocketpy/ tests/ docs/" | ||
jupyter: true | ||
- name: Run flake8 | ||
run: flake8 rocketpy/ tests/ | ||
- name: Run pylint | ||
run: | | ||
pylint rocketpy/ tests/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Scheduled Tests | ||
|
||
on: | ||
schedule: | ||
- cron: "0 17 */14 * 5" # every 2 weeks, always on a Friday at 17:00 | ||
timezone: "America/Sao_Paulo" | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
pytest: | ||
if: github.ref == "refs/heads/master" || github.ref == "refs/heads/develop" | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
fail-fast: false | ||
python-version: [3.9, 3.12] | ||
|
||
env: | ||
OS: ${{ matrix.os }} | ||
PYTHON: ${{ matrix.python-version }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install rocketpy | ||
run: pip install . | ||
|
||
- name: Test importing rocketpy | ||
run: python -c "import sys, rocketpy; print(f'{rocketpy.__name__} running on Python {sys.version}')" | ||
|
||
- name: Install test dependencies | ||
run: | | ||
pip install -r requirements-tests.txt | ||
pip install .[all] | ||
- name: Run Unit Tests | ||
run: pytest tests/unit --cov=rocketpy | ||
|
||
- name: Run Documentation Tests | ||
run: pytest rocketpy --doctest-modules --cov=rocketpy --cov-append | ||
|
||
- name: Run Integration Tests | ||
run: pytest tests/integration --cov=rocketpy --cov-append | ||
|
||
- name: Run Acceptance Tests | ||
run: pytest tests/acceptance --cov=rocketpy --cov-append --cov-report=xml | ||
|
||
- name: Run slow tests | ||
run: pytest tests -vv -m slow --runslow --cov=rocketpy --cov-append --cov-report=xml |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"recommendations": [ | ||
"ambooth.git-rename", | ||
"github.vscode-pull-request-github", | ||
"gruntfuggly.todo-tree", | ||
"mechatroner.rainbow-csv", | ||
"ms-python.black-formatter", | ||
"ms-python.debugpy", | ||
"ms-python.pylint", | ||
"ms-python.python", | ||
"ms-python.vscode-pylance", | ||
"ms-toolsai.jupyter", | ||
"ms-toolsai.jupyter-keymap", | ||
"ms-toolsai.jupyter-renderers", | ||
"ms-toolsai.vscode-jupyter-cell-tags", | ||
"ms-toolsai.vscode-jupyter-slideshow", | ||
"ms-vscode.cmake-tools", | ||
"ms-vscode.makefile-tools", | ||
"njpwerner.autodocstring", | ||
"streetsidesoftware.code-spell-checker", | ||
"trond-snekvik.simple-rst", | ||
] | ||
} |
Oops, something went wrong.