Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7332906

Browse files
committed
[test] add test in the makefile
1 parent b3a2d7d commit 7332906

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

Makefile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
all: register upload
2+
3+
register:
4+
python setup.py register
5+
6+
upload:
7+
python setup.py sdist bdist upload
8+
9+
test:
10+
nosetests
11+
cd docs && sphinx-build -nW -b html -d _build/doctrees . _build/html
12+
13+

setup.cfg

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[nosetests]
2+
verbosity=0
3+
with-coverage=0
4+
cover-html=1
5+
cover-inclusive=1
6+
cover-erase=1
7+
cover-package=element

0 commit comments

Comments
 (0)