forked from serhatbolsu/robotframework-appiumlibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (21 loc) · 673 Bytes
/
Makefile
File metadata and controls
31 lines (21 loc) · 673 Bytes
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
.PHONY: help
help:
@echo targes: version, generate_doc, pypi_upload, clean_pyc, andriod_demo, ios_demo, demo, unittest, test
generate_doc:
VENV/bin/python -m robot.libdoc ./src/AppiumLibrary/ ./doc/AppimuLibrary.html
pypi_upload:clean_pyc
rm -rf src/robotframework_appiumlibrary.egg-info/
VENV/bin/python setup.py sdist upload
@echo https://pypi.python.org/pypi/robotframework-appiumlibrary/
clean_pyc:
find . -iname "*.pyc" -delete
andriod_demo:
VENV/bin/pybot ./demo/test_andriod_demo.txt
ios_demo:
VENV/bin/pybot ./demo/test_ios_demo.txt
demo:andriod_demo ios_demo
unittest:
py.test -s tests
test:unittest
version:
cat src/AppiumLibrary/version.py