FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
chumpy/Makefile at master · mattloper/chumpy · GitHub
mattloper
/
chumpy
Public
Notifications
You must be signed in to change notification settings
Fork
175
Star
232
Code
Issues
21
Pull requests
6
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
chumpy
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
18 lines (15 loc) · 493 Bytes
Breadcrumbs
chumpy
/
Makefile
Copy path
File metadata and controls
18 lines (15 loc) · 493 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
all
:
upload
:
rm -r dist
python setup.py sdist
twine upload dist/
*
test
:
#
For some reason the import changes for Python 3 caused the Python 2 test
#
loader to give up without loading any tests. So we discover them ourselves.
#
python -m unittest
find chumpy -name
'
test_*.py
'
|
sed -e
'
s/\.py$$//
'
-e
'
s/\//./
'
|
xargs python -m unittest
coverage
: clean qcov
qcov
: all
env LD_PRELOAD=
$(
PRELOADED
)
coverage run --source=. -m unittest discover -s
.
coverage html
coverage report -m
Back
|
FazBrowse Home
|
New Git URL