-
Notifications
You must be signed in to change notification settings - Fork 432
chore(ci): introduce tests with Nox #4537
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
heitorlessa
merged 6 commits into
aws-powertools:develop
from
leandrodamascena:feat/ci-nox
Jun 18, 2024
Merged
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
08ed478
Adding nox to run tests with specific dependencies
leandrodamascena 2a6b89c
Ohhhh Leandro..
leandrodamascena eee2d41
Locking python version
leandrodamascena b6cbe2a
Adding local check + contributing
leandrodamascena 2fcda8f
Addressing Heitor's feedback
leandrodamascena d198233
Addressing Heitor's feedback
leandrodamascena 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Run nox tests | ||
# | ||
# usage: | ||
# poetry run nox --error-on-external-run --reuse-venv=yes --non-interactive | ||
# | ||
# If you want to target a specific Python version, add -p parameter | ||
|
||
from typing import List, Optional | ||
|
||
import nox | ||
|
||
PREFIX_TESTS_FUNCTIONAL = "tests/functional" | ||
PREFIX_TESTS_UNIT = "tests/unit" | ||
|
||
|
||
def build_and_run_test(session: nox.Session, folders: List, extras: Optional[str] = "") -> None: | ||
""" | ||
This function is responsible for setting up the testing environment and running the test suite for specific feature. | ||
|
||
The function performs the following tasks: | ||
1. Installs the required dependencies for executing any test | ||
2. If the `extras` parameter is provided, the function installs the additional dependencies | ||
3. the function runs the pytest command with the specified folders as arguments, executing the test suite. | ||
|
||
Parameters | ||
---------- | ||
session: nox.Session | ||
The current Nox session object, which is used to manage the virtual environment and execute commands. | ||
folders: List | ||
A list of folder paths that contain the test files to be executed. | ||
extras: Optional[str] | ||
A string representing additional dependencies that should be installed for the test environment. | ||
If not provided, the function will install the project with basic dependencies | ||
""" | ||
|
||
# Required install to execute any test | ||
session.install("poetry", "pytest", "pytest-mock", "pytest_socket") | ||
|
||
# Powertools project folder is in the root | ||
if extras: | ||
session.install(f"./[{extras}]") | ||
else: | ||
session.install("./") | ||
|
||
# Execute test in specific folders | ||
session.run("pytest", *folders) | ||
|
||
|
||
@nox.session() | ||
def test_with_only_required_packages(session: nox.Session): | ||
"""Tests that only depends for required libraries""" | ||
# Logger | ||
build_and_run_test( | ||
session, | ||
folders=[ | ||
f"{PREFIX_TESTS_FUNCTIONAL}/logger/", | ||
], | ||
) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
File renamed without changes.
File renamed without changes.
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.