Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dalito/linkml-project-copier
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: dalito/linkml-project-copier
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: python-test
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Feb 20, 2025

  1. Added way to generate the Python data model separately and included t…

    …hat into the testing procedure.
    MirjamSchr committed Feb 20, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0ab1364 View commit details
  2. Fix Typo

    MirjamSchr committed Feb 20, 2025
    Copy the full SHA
    6f2b71b View commit details
  3. Copy the full SHA
    2c87872 View commit details
Showing with 6 additions and 1 deletion.
  1. +6 −1 template/justfile
7 changes: 6 additions & 1 deletion template/justfile
Original file line number Diff line number Diff line change
@@ -99,6 +99,11 @@ gen-doc:
[group('model development')]
testdoc: gen-doc _serve

# Generate the Python data models (dataclasses & pydantic)
gen-python:
poetry run gen-project -d {{pymodel}} -I python {{source_schema_path}}
poetry run gen-pydantic {{gen_pydantic_args}} {{source_schema_path}} > {{pymodel}}/{{schema_name}}_pydantic.py

# Generate project files including Python data model
[group('model development')]
gen-project:
@@ -177,7 +182,7 @@ _test-schema:
poetry run gen-project {{config_yaml}} -d tmp {{source_schema_path}}

# Run Python unit tests with pytest
_test-python:
_test-python: gen-python
poetry run python -m pytest

# Run example tests