-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: wire up some basic python unit tests
Hook up pytest to run tests for the package
- Loading branch information
Showing
4 changed files
with
132 additions
and
1 deletion.
There are no files selected for viewing
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,32 @@ | ||
name: code tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "python/**" | ||
- ".github/workflows/code-test.yaml" | ||
pull_request: | ||
paths: | ||
- "python/**" | ||
- ".github/workflows/code-test.yaml" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
understack-workflows: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: ./python/understack-workflows | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: pipx install poetry==1.7.1 && poetry self add 'poetry-dynamic-versioning[plugin]' | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version-file: python/understack-workflows/pyproject.toml | ||
cache: "poetry" | ||
- run: poetry install --with test | ||
- run: poetry build | ||
- run: poetry run pytest |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,10 @@ | ||
from understack_workflows.models import NIC | ||
|
||
|
||
def test_nic(): | ||
value = "test" | ||
a = NIC(name=value, location=value, interfaces=[], model=value) | ||
|
||
assert a.name == value | ||
assert a.location == value | ||
assert a.model == value |