-
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
3 changed files
with
50 additions
and
0 deletions.
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,29 @@ | ||
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 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version-file: python/understack-workflows/pyproject.toml | ||
- run: pip install . pytest pytest-github-actions-annotate-failures | ||
- run: pytest |
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 |