Skip to content
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

QCSchema coordination, testing, and export #237

Merged
merged 10 commits into from
Jan 30, 2021
Merged

Commits on Jan 29, 2021

  1. qcsk: export models to JSON Schema with mkdir -p qcschema

    python -c "exec(\"import pathlib, qcelemental\nfor md in qcelemental.models.qcschema_models():\n\tmfile = (pathlib.Path('qcschema') / md.__name__).with_suffix('.schema')\n\twith open(mfile, 'w') as fp:\n\t\tfp.write(md.schema_json(indent=None))\")"
    python -c "exec(\"import json, pathlib, pydantic, qcelemental\nwith open((pathlib.Path('qcschema') / 'QCSchema').with_suffix('.schema'), 'w') as fp:\n\tjson.dump(pydantic.schema.schema(qcelemental.models.qcschema_models(), title='QCSchema'), fp, indent=4)\")"
    loriab committed Jan 29, 2021
    Configuration menu
    Copy the full SHA
    a742dc7 View commit details
    Browse the repository at this point in the history
  2. qcsk: generate example json from tests and test against exported sche…

    …ma pytest --validate
    loriab committed Jan 29, 2021
    Configuration menu
    Copy the full SHA
    16e2b7b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d3fb4e5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    75758a1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1573804 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1bf66dc View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    10742c8 View commit details
    Browse the repository at this point in the history
  8. patch-ups after review

    loriab committed Jan 29, 2021
    Configuration menu
    Copy the full SHA
    81a2a0c View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    4d7df19 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2021

  1. CI on py39 and changelog

    loriab committed Jan 30, 2021
    Configuration menu
    Copy the full SHA
    b970ecb View commit details
    Browse the repository at this point in the history