FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
openapi-schema-validator/Makefile at master · python-openapi/openapi-schema-validator · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python-openapi
/
openapi-schema-validator
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
37
Star
126
Code
Issues
1
Pull requests
14
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
openapi-schema-validator
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
57 lines (38 loc) · 971 Bytes
Breadcrumbs
openapi-schema-validator
/
Makefile
Copy path
File metadata and controls
57 lines (38 loc) · 971 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
.EXPORT_ALL_VARIABLES
:
PROJECT_NAME
=openapi-schema-validator
PACKAGE_NAME
=
$(
subst
-,_,${PROJECT_NAME})
VERSION
=
`
git describe --abbrev=0
`
PYTHONDONTWRITEBYTECODE
=1
params
:
@echo
"
Project name:
${PROJECT_NAME}
"
@echo
"
Package name:
${PACKAGE_NAME}
"
@echo
"
Version:
${VERSION}
"
dist-build
:
@poetry build
dist-cleanup
:
@rm -rf build dist
${PACKAGE_NAME}
.egg-info
dist-upload
:
@poetry publish
test-python
:
@pytest
test-cache-cleanup
:
@rm -rf .pytest_cache
reports-cleanup
:
@rm -rf reports
test-cleanup
: test-cache-cleanup reports-cleanup
docs-html
:
sphinx-build -b html docs docs/_build
docs-pagefind
: docs-html
@npx --yes pagefind --site docs/_build
docs-manifest
:
@cp docs/manifest.json docs/_build/manifest.json
docs-publish
: docs-html docs-pagefind docs-manifest
docs-cleanup
:
@rm -rf docs/_build
cleanup
: dist-cleanup test-cleanup
release/patch
:
@bump2version patch
release/minor
:
@bump2version minor
release/major
:
@bump2version major
Back
|
FazBrowse Home
|
New Git URL