# Currently the main purposing of this makefile is to synchronize
# latest releases of linkml-model into linkml_runtime/linkml_model
#
# See https://github.com/linkml/linkml-runtime/issues/10

# TODO: make this mechanism more robust
MODEL_DIR = ../linkml-model/linkml_model/

update_model:
	cp -pr $(MODEL_DIR)/* linkml_runtime/linkml_model

test:
	pipenv run python -m unittest
