@@ -28,13 +28,13 @@ install-testing: install-pydantic_ssm_settings
2828install : install-testing install-linting # install-docs
2929 @echo ' installed development requirements'
3030
31- # .PHONY: build-trace
32- # build-trace:
33- # python setup.py build_ext --force --inplace --define CYTHON_TRACE
31+ .PHONY : build-trace
32+ build-trace :
33+ python setup.py build_ext --force --inplace --define CYTHON_TRACE
3434
35- # .PHONY: build
36- # build:
37- # python setup.py build_ext --inplace
35+ .PHONY : build
36+ build :
37+ python setup.py build_ext --inplace
3838
3939.PHONY : format
4040format :
@@ -59,18 +59,17 @@ mypy:
5959
6060.PHONY : test
6161test :
62- # pytest --cov=pydantic_ssm_settings
63- pytest
62+ pytest --cov=pydantic_ssm_settings
6463
6564.PHONY : testcov
6665testcov : test
6766 @echo " building coverage html"
6867 @coverage html
6968
70- .PHONY : testcov-compile
71- testcov-compile : build-trace test
72- @echo " building coverage html"
73- @coverage html
69+ # .PHONY: testcov-compile
70+ # testcov-compile: build-trace test
71+ # @echo "building coverage html"
72+ # @coverage html
7473
7574# .PHONY: test-examples
7675# test-examples:
@@ -121,19 +120,19 @@ clean:
121120 rm -rf codecov.sh
122121 rm -rf coverage.xml
123122
124- .PHONY : docs
125- docs :
126- flake8 --max-line-length=80 docs/examples/
127- python docs/build/main.py
128- mkdocs build
129-
130- .PHONY : docs-serve
131- docs-serve :
132- python docs/build/main.py
133- mkdocs serve
134-
135- .PHONY : publish-docs
136- publish-docs :
137- zip -r site.zip site
138- @curl -H " Content-Type: application/zip" -H " Authorization: Bearer ${NETLIFY} " \
139- --data-binary " @site.zip" https://api.netlify.com/api/v1/sites/pydantic-docs.netlify.com/deploys
123+ # .PHONY: docs
124+ # docs:
125+ # flake8 --max-line-length=80 docs/examples/
126+ # python docs/build/main.py
127+ # mkdocs build
128+
129+ # .PHONY: docs-serve
130+ # docs-serve:
131+ # python docs/build/main.py
132+ # mkdocs serve
133+
134+ # .PHONY: publish-docs
135+ # publish-docs:
136+ # zip -r site.zip site
137+ # @curl -H "Content-Type: application/zip" -H "Authorization: Bearer ${NETLIFY}" \
138+ # --data-binary "@site.zip" https://api.netlify.com/api/v1/sites/pydantic-docs.netlify.com/deploys
0 commit comments